Skip to content

Commit

Permalink
Tweak gaps
Browse files Browse the repository at this point in the history
  • Loading branch information
estrattonbailey committed Dec 18, 2024
1 parent 28d8314 commit dd6509c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/interstitials/Trending.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
8 changes: 7 additions & 1 deletion src/screens/Search/components/ExploreTrendingTopics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/view/shell/desktop/SidebarTrendingTopics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit dd6509c

Please sign in to comment.