diff options
author | jim <310223+jimmylee@users.noreply.github.com> | 2025-09-02 22:21:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-02 22:21:16 -0700 |
commit | fd7b1292b8ba1d7ef847ea7084dcf237252753cb (patch) | |
tree | ca9ba14b22ccd35e352b498ebb2a0929eb92db20 | |
parent | 135f37eae629eb5451508fa7844cea82dfb787d9 (diff) | |
parent | 3601933ff67e30283284db0d32487c8522430815 (diff) | |
download | voidsky-fd7b1292b8ba1d7ef847ea7084dcf237252753cb.tar.zst |
Merge pull request #8923 from internet-development/@APiligrim/update-gif-select
Update: search on Gif select component to add small padding to match other search experiences
-rw-r--r-- | src/components/dialogs/GifSelect.tsx | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/src/components/dialogs/GifSelect.tsx b/src/components/dialogs/GifSelect.tsx index 15c1ba26e..fbbc70f11 100644 --- a/src/components/dialogs/GifSelect.tsx +++ b/src/components/dialogs/GifSelect.tsx @@ -146,20 +146,9 @@ function GifList({ a.flex_row, a.align_center, !gtMobile && web(a.gap_md), + a.pb_sm, + t.atoms.bg, ]}> - {/* cover top corners */} - <View - style={[ - a.absolute, - a.inset_0, - { - borderBottomLeftRadius: 8, - borderBottomRightRadius: 8, - }, - t.atoms.bg, - ]} - /> - {!gtMobile && isWeb && ( <Button size="small" |