diff options
author | Eric Bailey <git@esb.lol> | 2025-04-04 18:55:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-04 16:55:30 -0700 |
commit | 0b08128e4a984e302c4675bf6b262272744e69f1 (patch) | |
tree | aec6422c52f356ea0322aacd8fb400f68c8ccb66 /src/screens/Search/modules/ExploreInterestsCard.tsx | |
parent | aca89d4aea61a50697187464e88ac1b9a4ef40bd (diff) | |
download | voidsky-0b08128e4a984e302c4675bf6b262272744e69f1.tar.zst |
[Explore] Design tweaks (#8131)
* Fix interests card spacing * Space out AvatarStack * SP icon size * Visual alignment of tab bar and headers * Tweak spacing around search input * Drop text size in sp card overflow count * Tweak
Diffstat (limited to 'src/screens/Search/modules/ExploreInterestsCard.tsx')
-rw-r--r-- | src/screens/Search/modules/ExploreInterestsCard.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/screens/Search/modules/ExploreInterestsCard.tsx b/src/screens/Search/modules/ExploreInterestsCard.tsx index fde5c3b1e..a2c6ff36d 100644 --- a/src/screens/Search/modules/ExploreInterestsCard.tsx +++ b/src/screens/Search/modules/ExploreInterestsCard.tsx @@ -6,7 +6,7 @@ import {useLingui} from '@lingui/react' import {Nux, useSaveNux} from '#/state/queries/nuxs' import {usePreferencesQuery} from '#/state/queries/preferences' import {useInterestsDisplayNames} from '#/screens/Onboarding/state' -import {atoms as a, useGutters, useTheme} from '#/alf' +import {atoms as a, useTheme} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times' import {Link} from '#/components/Link' @@ -16,7 +16,6 @@ import {Text} from '#/components/Typography' export function ExploreInterestsCard() { const t = useTheme() const {_} = useLingui() - const gutters = useGutters([0, 'base']) const {data: preferences} = usePreferencesQuery() const interestsDisplayNames = useInterestsDisplayNames() const {mutateAsync: saveNux} = useSaveNux() @@ -53,7 +52,7 @@ export function ExploreInterestsCard() { onConfirm={onConfirmClose} /> - <View style={[gutters, a.pt_lg, a.pb_2xs]}> + <View style={[a.p_lg, a.pb_2xs]}> <View style={[ a.p_lg, |