diff options
author | Bartosz Kaszubowski <gosimek@gmail.com> | 2025-08-07 18:23:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-07 09:23:01 -0700 |
commit | d84d54bae39642ed995fbc7ef235f1ea1e88c8c0 (patch) | |
tree | 67e50b2ffd97b0c014f2a1ba186b3a85d19023cd /src/components/Select/index.web.tsx | |
parent | 0a2b1fcfb808c9ddd503fac5247d1acf256cfb45 (diff) | |
download | voidsky-d84d54bae39642ed995fbc7ef235f1ea1e88c8c0.tar.zst |
Fix web scrollable select unwanted overflow (#8786)
Diffstat (limited to 'src/components/Select/index.web.tsx')
-rw-r--r-- | src/components/Select/index.web.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/Select/index.web.tsx b/src/components/Select/index.web.tsx index a4d3fb80b..cfb401f97 100644 --- a/src/components/Select/index.web.tsx +++ b/src/components/Select/index.web.tsx @@ -190,6 +190,7 @@ export function Content<T>({items, renderItem}: ContentProps<T>) { a.border, t.atoms.border_contrast_low, a.rounded_sm, + a.overflow_hidden, ]}> <RadixSelect.ScrollUpButton style={flatten(up)}> <ChevronUpIcon style={[t.atoms.text]} size="xs" /> |