map quality fixing

This commit is contained in:
2024-02-21 18:18:27 +05:00
parent 3c8f6007e7
commit 2ab407d008
19 changed files with 7094 additions and 33 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ type HelpButtonProps = {
const HelpButton = ({ handleOnHelpClick, className }: HelpButtonProps) => {
return (
<button
className={`bg-white border border-[#C7BDBA] rounded-full flex justify-center items-center ${
className={`bg-white border border-[#C7BDBA] rounded-full flex justify-center items-center hover:bg-secondary transition-all duration-200 ${
className ? className : "h-8 w-8"
} `}
onClick={handleOnHelpClick}