diff options
Diffstat (limited to 'src/screens/Search/Explore.tsx')
-rw-r--r-- | src/screens/Search/Explore.tsx | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/screens/Search/Explore.tsx b/src/screens/Search/Explore.tsx index e74a6f1e2..26e8b36eb 100644 --- a/src/screens/Search/Explore.tsx +++ b/src/screens/Search/Explore.tsx @@ -766,6 +766,9 @@ export function Explore({ ) } // feed previews + case 'preview:spacer': { + return <View style={[a.w_full, a.pt_4xl]} /> + } case 'preview:empty': { return null // what should we do here? } @@ -799,7 +802,16 @@ export function Explore({ ) } case 'preview:footer': { - return <View style={[a.w_full, a.pt_2xl]} /> + return ( + <View + style={[ + a.border_t, + t.atoms.border_contrast_low, + a.w_full, + a.pt_4xl, + ]} + /> + ) } case 'preview:sliceItem': { const slice = item.slice |