diff options
author | Anastasiya Uraleva <anastasiya@Anastasiyas-MacBook-Pro.local> | 2025-08-27 21:23:32 -0700 |
---|---|---|
committer | Anastasiya Uraleva <anastasiya@Anastasiyas-MacBook-Pro.local> | 2025-08-27 21:31:29 -0700 |
commit | cc4acae7582fe99544ebc2c7d1cc28136b6bccbc (patch) | |
tree | e8ba4e514a8ee6b1df98b6f2e4cde1fb7364ce1a /src/components/dialogs/GifSelect.tsx | |
parent | eeeeda349502b29573ad54ab1c8aee4c532e0ab3 (diff) | |
download | voidsky-cc4acae7582fe99544ebc2c7d1cc28136b6bccbc.tar.zst |
Update search on Gif select component to add small padding to match other search experiences
Diffstat (limited to 'src/components/dialogs/GifSelect.tsx')
-rw-r--r-- | src/components/dialogs/GifSelect.tsx | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/components/dialogs/GifSelect.tsx b/src/components/dialogs/GifSelect.tsx index 15c1ba26e..c72c2c8f6 100644 --- a/src/components/dialogs/GifSelect.tsx +++ b/src/components/dialogs/GifSelect.tsx @@ -146,19 +146,10 @@ function GifList({ a.flex_row, a.align_center, !gtMobile && web(a.gap_md), + a.pb_sm, ]}> {/* cover top corners */} - <View - style={[ - a.absolute, - a.inset_0, - { - borderBottomLeftRadius: 8, - borderBottomRightRadius: 8, - }, - t.atoms.bg, - ]} - /> + <View style={[a.absolute, a.inset_0, t.atoms.bg]} /> {!gtMobile && isWeb && ( <Button |