diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-04-25 00:05:48 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-24 16:05:48 -0500 |
commit | 686f15a62b6cc90d2ee48dc1ace2410d3f80df9c (patch) | |
tree | fc52ccd3da739c9ca9ac99f8b53abda7d881a90e /src | |
parent | d992b27716e60e27424256196cdf24c278f19c55 (diff) | |
download | voidsky-686f15a62b6cc90d2ee48dc1ace2410d3f80df9c.tar.zst |
fix skeleton height (#8221)
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/Search/modules/ExploreTrendingTopics.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/screens/Search/modules/ExploreTrendingTopics.tsx b/src/screens/Search/modules/ExploreTrendingTopics.tsx index 167f6d193..1d3bc2d86 100644 --- a/src/screens/Search/modules/ExploreTrendingTopics.tsx +++ b/src/screens/Search/modules/ExploreTrendingTopics.tsx @@ -265,12 +265,12 @@ export function TrendingTopicRowSkeleton({}: {withPosts: boolean}) { style={[a.rounded_full]} /> </View> - <LoadingPlaceholder width={90} height={18} /> + <LoadingPlaceholder width={90} height={17} /> </View> <View style={[a.flex_row, a.gap_sm, a.align_center, {paddingLeft: 20}]}> - <LoadingPlaceholder width={70} height={18} /> - <LoadingPlaceholder width={40} height={18} /> - <LoadingPlaceholder width={60} height={18} /> + <LoadingPlaceholder width={70} height={16} /> + <LoadingPlaceholder width={40} height={16} /> + <LoadingPlaceholder width={60} height={16} /> </View> </View> <View style={[a.flex_shrink_0]}> |