diff options
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" |