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/view/screens/ProfileFeed.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/view/screens/ProfileFeed.tsx')
-rw-r--r-- | src/view/screens/ProfileFeed.tsx | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/view/screens/ProfileFeed.tsx b/src/view/screens/ProfileFeed.tsx index f272b90a0..30f8dbebe 100644 --- a/src/view/screens/ProfileFeed.tsx +++ b/src/view/screens/ProfileFeed.tsx @@ -1,5 +1,6 @@ import React, {useCallback, useMemo} from 'react' import {Pressable, StyleSheet, View} from 'react-native' +import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {msg, Plural, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useIsFocused, useNavigation} from '@react-navigation/native' @@ -54,7 +55,6 @@ import {atoms as a, useTheme} from '#/alf' import {Button as NewButton, ButtonText} from '#/components/Button' import {ArrowOutOfBox_Stroke2_Corner0_Rounded as Share} from '#/components/icons/ArrowOutOfBox' import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' -import {DotGrid_Stroke2_Corner0_Rounded as Ellipsis} from '#/components/icons/DotGrid' import { Heart2_Filled_Stroke2_Corner0_Rounded as HeartFilled, Heart2_Stroke2_Corner0_Rounded as HeartOutline, @@ -303,15 +303,16 @@ export function ProfileFeedScreenInner({ a.align_center, a.rounded_full, {height: 36, width: 36}, - t.atoms.bg_contrast_50, + t.atoms.bg_contrast_25, (state.hovered || state.pressed) && [ - t.atoms.bg_contrast_100, + t.atoms.bg_contrast_50, ], ]} testID="headerDropdownBtn"> - <Ellipsis - size="lg" - fill={t.atoms.text_contrast_medium.color} + <FontAwesomeIcon + icon="ellipsis" + size={20} + style={t.atoms.text} /> </Pressable> ) |