about summary refs log tree commit diff
path: root/src/components/Button.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-06-20 12:30:48 -0500
committerGitHub <noreply@github.com>2024-06-20 10:30:48 -0700
commiteac4668d7312b35721e147e808c181b2be0256bf (patch)
treeb146a1271e382e31f53c8f406491f3c9c0e9da99 /src/components/Button.tsx
parent80197556f176723b619349dc060d1b7001472d47 (diff)
downloadvoidsky-eac4668d7312b35721e147e808c181b2be0256bf.tar.zst
Merge #4492, fixes profile menu hover (#4580)
* Fix button hover color (#4492)

* Update ProfileMenu.tsx

* Update Button.tsx

* Update ProfileFeed.tsx

* Update ProfileFeed.tsx

* Re-add change post conflict

---------

Co-authored-by: Minseo Lee <itoupluk427@gmail.com>
Diffstat (limited to 'src/components/Button.tsx')
-rw-r--r--src/components/Button.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Button.tsx b/src/components/Button.tsx
index deac450ee..54d9eaf3b 100644
--- a/src/components/Button.tsx
+++ b/src/components/Button.tsx
@@ -231,7 +231,7 @@ export const Button = React.forwardRef<View, ButtonProps>(
           if (!disabled) {
             baseStyles.push(t.atoms.bg)
             hoverStyles.push({
-              backgroundColor: t.palette.contrast_100,
+              backgroundColor: t.palette.contrast_25,
             })
           }
         }