From d561170d83751d835d1f230f6f548d6481f8d7c9 Mon Sep 17 00:00:00 2001 From: vineyardbovines Date: Wed, 22 Apr 2026 11:01:28 -0400 Subject: [PATCH] fix(gifPicker): extend header background through the gap before pills Follow-up to the pills-background fix: the GifPickerHeader used a bottom margin, leaving a transparent strip between the search input and the pills row where scrolling GIFs still bled through. Switch to bottom padding so the gap sits inside the View's background. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/features/gifPicker/components/GifPickerHeader.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/gifPicker/components/GifPickerHeader.tsx b/src/features/gifPicker/components/GifPickerHeader.tsx index 32955d6eee..a3bd34bcad 100644 --- a/src/features/gifPicker/components/GifPickerHeader.tsx +++ b/src/features/gifPicker/components/GifPickerHeader.tsx @@ -29,7 +29,7 @@ export function GifPickerHeader({ style={[ native(a.pt_4xl), a.relative, - a.mb_md, + a.pb_md, a.flex_row, a.align_center, !gtMobile && web(a.gap_md),