diff options
Diffstat (limited to 'src/view')
-rw-r--r-- | src/view/screens/Feeds.tsx | 1 | ||||
-rw-r--r-- | src/view/screens/Storybook/Buttons.tsx | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/view/screens/Feeds.tsx b/src/view/screens/Feeds.tsx index 82de30d5c..5a2d71087 100644 --- a/src/view/screens/Feeds.tsx +++ b/src/view/screens/Feeds.tsx @@ -642,6 +642,7 @@ function SavedFeed({ const t = useTheme() const commonStyle = [ + a.w_full, a.flex_1, a.px_lg, a.py_md, diff --git a/src/view/screens/Storybook/Buttons.tsx b/src/view/screens/Storybook/Buttons.tsx index b532b0dd1..7cc3f60bf 100644 --- a/src/view/screens/Storybook/Buttons.tsx +++ b/src/view/screens/Storybook/Buttons.tsx @@ -20,7 +20,7 @@ export function Buttons() { <H1>Buttons</H1> <View style={[a.flex_row, a.flex_wrap, a.gap_md, a.align_start]}> - {['primary', 'secondary', 'negative'].map(color => ( + {['primary', 'secondary', 'secondary_inverted'].map(color => ( <View key={color} style={[a.gap_md, a.align_start]}> {['solid', 'outline', 'ghost'].map(variant => ( <React.Fragment key={variant}> |