Swap icon, sizing

This commit is contained in:
Eric Bailey
2024-06-05 14:14:39 -05:00
parent 43609d5ee5
commit 5690f5235f
2 changed files with 16 additions and 7 deletions
+15 -6
View File
@@ -10,7 +10,7 @@ import {useMinimalShellMode} from 'lib/hooks/useMinimalShellMode'
import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
import {Logo} from '#/view/icons/Logo' import {Logo} from '#/view/icons/Logo'
import {atoms as a, useTheme} from '#/alf' import {atoms as a, useTheme} from '#/alf'
import {ListPlus_Stroke2_Corner0_Rounded as FeedsIcon} from '#/components/icons/ListPlus' import {SettingsSliderVertical_Stroke2_Corner0_Rounded as FeedsIcon} from '#/components/icons/SettingsSlider'
import {Link} from '#/components/Link' import {Link} from '#/components/Link'
import {useKawaiiMode} from '../../../state/preferences/kawaii' import {useKawaiiMode} from '../../../state/preferences/kawaii'
import {HomeHeaderLayoutMobile} from './HomeHeaderLayoutMobile' import {HomeHeaderLayoutMobile} from './HomeHeaderLayoutMobile'
@@ -52,8 +52,8 @@ function HomeHeaderLayoutDesktopAndTablet({
a.justify_end, a.justify_end,
a.align_center, a.align_center,
a.pt_lg, a.pt_lg,
a.px_lg, a.px_md,
a.pb_sm, a.pb_2xs,
t.atoms.bg, t.atoms.bg,
t.atoms.border_contrast_low, t.atoms.border_contrast_low,
styles.bar, styles.bar,
@@ -63,7 +63,6 @@ function HomeHeaderLayoutDesktopAndTablet({
a.absolute, a.absolute,
a.inset_0, a.inset_0,
a.pt_lg, a.pt_lg,
a.pb_sm,
a.m_auto, a.m_auto,
kawaii && {paddingTop: 4, paddingBottom: 0}, kawaii && {paddingTop: 4, paddingBottom: 0},
{ {
@@ -76,8 +75,18 @@ function HomeHeaderLayoutDesktopAndTablet({
<Link <Link
to="/feeds" to="/feeds"
hitSlop={10} hitSlop={10}
label={_(msg`View your feeds and explore more`)}> label={_(msg`View your feeds and explore more`)}
<FeedsIcon size="lg" fill={t.atoms.text_contrast_medium.color} /> size="small"
variant="ghost"
color="secondary"
shape="square"
style={[
a.justify_center,
{
marginTop: -4,
},
]}>
<FeedsIcon size="md" fill={t.atoms.text_contrast_medium.color} />
</Link> </Link>
</View> </View>
)} )}
+1 -1
View File
@@ -15,8 +15,8 @@ import {Logo} from '#/view/icons/Logo'
import {atoms} from '#/alf' import {atoms} from '#/alf'
import {useTheme} from '#/alf' import {useTheme} from '#/alf'
import {ColorPalette_Stroke2_Corner0_Rounded as ColorPalette} from '#/components/icons/ColorPalette' import {ColorPalette_Stroke2_Corner0_Rounded as ColorPalette} from '#/components/icons/ColorPalette'
import {ListPlus_Stroke2_Corner0_Rounded as FeedsIcon} from '#/components/icons/ListPlus'
import {Menu_Stroke2_Corner0_Rounded as Menu} from '#/components/icons/Menu' import {Menu_Stroke2_Corner0_Rounded as Menu} from '#/components/icons/Menu'
import {SettingsSliderVertical_Stroke2_Corner0_Rounded as FeedsIcon} from '#/components/icons/SettingsSlider'
import {Link} from '#/components/Link' import {Link} from '#/components/Link'
import {IS_DEV} from '#/env' import {IS_DEV} from '#/env'