diff options
author | Eric Bailey <git@esb.lol> | 2024-06-20 12:30:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-20 10:30:48 -0700 |
commit | eac4668d7312b35721e147e808c181b2be0256bf (patch) | |
tree | b146a1271e382e31f53c8f406491f3c9c0e9da99 /src/components/Button.tsx | |
parent | 80197556f176723b619349dc060d1b7001472d47 (diff) | |
download | voidsky-eac4668d7312b35721e147e808c181b2be0256bf.tar.zst |
* 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.tsx | 2 |
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, }) } } |