Tweak feed card styles

This commit is contained in:
Eric Bailey
2024-06-28 10:38:29 -05:00
parent 74e076b5e4
commit 09b803a639
4 changed files with 104 additions and 4 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ export function Link({
}
export function Outer({children}: {children: React.ReactNode}) {
return <View style={[a.flex_1, a.gap_md]}>{children}</View>
return <View style={[a.w_full, a.gap_md]}>{children}</View>
}
export function Header({children}: {children: React.ReactNode}) {
+4 -3
View File
@@ -274,11 +274,12 @@ export function SuggestedFeeds() {
{content}
<Button
label={_(msg`Browse more accounts on our explore page`)}
label={_(msg`Browse more feeds on our explore page`)}
onPress={() => {
navigation.navigate('SearchTab')
}}>
<CardOuter style={[a.flex_1, {borderWidth: 0}]}>
}}
style={[a.flex_col]}>
<CardOuter style={[a.flex_1]}>
<View style={[a.flex_1, a.justify_center]}>
<View style={[a.flex_row, a.px_lg]}>
<Text style={[a.pr_xl, a.flex_1, a.leading_snug]}>
+1
View File
@@ -642,6 +642,7 @@ function SavedFeed({
const t = useTheme()
const commonStyle = [
a.w_full,
a.flex_1,
a.px_lg,
a.py_md,