Skip to content

Commit

Permalink
Fix gap
Browse files Browse the repository at this point in the history
  • Loading branch information
estrattonbailey committed Dec 18, 2024
1 parent 5990468 commit ad2ab91
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/interstitials/Trending.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function TrendingInterstitial() {
export function Inner() {
const t = useTheme()
const {_} = useLingui()
const gutters = useGutters(['base'])
const gutters = useGutters(['wide', 'base'])
const trendingPrompt = Prompt.usePromptControl()
const {setTrendingDisabled} = useTrendingSettingsApi()
const {data: trending, error, isLoading} = useTrendingTopics()
Expand Down Expand Up @@ -73,7 +73,7 @@ export function Inner() {
</Button>
</View>

<View style={[a.flex_row, a.flex_wrap, {gap: '8px 6px'}]}>
<View style={[a.flex_row, a.flex_wrap, {rowGap: 8, columnGap: 6}]}>
{isLoading ? (
Array(TRENDING_TOPICS_COUNT)
.fill(0)
Expand Down
2 changes: 1 addition & 1 deletion src/screens/Search/components/ExploreTrendingTopics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function Inner() {
a.flex_row,
a.justify_start,
a.flex_wrap,
{gap: '8px 6px'},
{rowGap: 8, columnGap: 6},
gutters,
]}>
{isLoading ? (
Expand Down

0 comments on commit ad2ab91

Please sign in to comment.