diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-08-12 06:30:18 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-11 14:30:18 -0700 |
commit | 88f879ffe91fb7bff668c81b5a82fb4cfbd7889b (patch) | |
tree | 9717e7cb757ad566b1ea4d1023911ed301c476ef /src/view/shell/desktop/RightNav.tsx | |
parent | 6f450b4982405535ebccba24f2e32940b161d57f (diff) | |
download | voidsky-88f879ffe91fb7bff668c81b5a82fb4cfbd7889b.tar.zst |
Improve styles (#4916)
Co-authored-by: Hailey <me@haileyok.com>
Diffstat (limited to 'src/view/shell/desktop/RightNav.tsx')
-rw-r--r-- | src/view/shell/desktop/RightNav.tsx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/view/shell/desktop/RightNav.tsx b/src/view/shell/desktop/RightNav.tsx index ed3d8212c..fb8e6c26c 100644 --- a/src/view/shell/desktop/RightNav.tsx +++ b/src/view/shell/desktop/RightNav.tsx @@ -11,6 +11,7 @@ import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' import {s} from 'lib/styles' import {TextLink} from 'view/com/util/Link' import {Text} from 'view/com/util/text/Text' +import {atoms as a} from '#/alf' import {ProgressGuideList} from '#/components/ProgressGuide/List' import {DesktopFeeds} from './Feeds' import {DesktopSearch} from './Search' @@ -56,7 +57,7 @@ export function DesktopRightNav({routeName}: {routeName: string}) { paddingTop: hasSession ? 0 : 18, }, ]}> - <View style={[{flexWrap: 'wrap'}, s.flexRow]}> + <View style={[{flexWrap: 'wrap'}, s.flexRow, a.gap_xs]}> {hasSession && ( <> <TextLink @@ -69,7 +70,7 @@ export function DesktopRightNav({routeName}: {routeName: string}) { text={_(msg`Feedback`)} /> <Text type="md" style={pal.textLight}> - · + · </Text> </> )} @@ -80,7 +81,7 @@ export function DesktopRightNav({routeName}: {routeName: string}) { text={_(msg`Privacy`)} /> <Text type="md" style={pal.textLight}> - · + · </Text> <TextLink type="md" @@ -89,7 +90,7 @@ export function DesktopRightNav({routeName}: {routeName: string}) { text={_(msg`Terms`)} /> <Text type="md" style={pal.textLight}> - · + · </Text> <TextLink type="md" |