Tweak gaps

This commit is contained in:
Eric Bailey
2024-12-17 18:27:14 -06:00
parent 28d83146e6
commit dd6509c5d2
3 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ export function Inner() {
</Button>
</View>
<View style={[a.flex_row, a.flex_wrap, a.gap_sm]}>
<View style={[a.flex_row, a.flex_wrap, {gap: '8px 6px'}]}>
{isLoading ? (
Array(TRENDING_TOPICS_COUNT)
.fill(0)
@@ -65,7 +65,13 @@ function Inner() {
<View style={[a.pt_md, a.pb_lg]}>
<View
style={[a.flex_row, a.justify_start, a.flex_wrap, a.gap_sm, gutters]}>
style={[
a.flex_row,
a.justify_start,
a.flex_wrap,
{gap: '8px 6px'},
gutters,
]}>
{isLoading ? (
Array(TRENDING_TOPICS_COUNT)
.fill(0)
@@ -62,7 +62,7 @@ function Inner() {
</Button>
</View>
<View style={[a.flex_row, a.flex_wrap, a.gap_xs]}>
<View style={[a.flex_row, a.flex_wrap, {gap: '6px 4px'}]}>
{isLoading ? (
Array(TRENDING_LIMIT)
.fill(0)