about summary refs log tree commit diff
path: root/src/components/Menu
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-02-13 00:00:45 +0000
committerGitHub <noreply@github.com>2025-02-13 00:00:45 +0000
commitdb25f95c33121da9d04a02dc2e77929a5d24a5ce (patch)
tree8d86126e83f032ac6b20e3de8f1a346ebf93a863 /src/components/Menu
parentb37199a5a02e9957d3f564035004a39190c91a62 (diff)
downloadvoidsky-db25f95c33121da9d04a02dc2e77929a5d24a5ce.tar.zst
Improved search language select (#7591)
* replace with Menu

* new icon for native

* hackfix radix dropdown height

* fix jsx

* reduce language names with lots of variants to what firefox returns from Intl.DisplayNames

* more language label simplifications

* add collision padding

* adjust spacing around and left align title
Diffstat (limited to 'src/components/Menu')
-rw-r--r--src/components/Menu/index.web.tsx7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/components/Menu/index.web.tsx b/src/components/Menu/index.web.tsx
index eb52895d4..eb91e014f 100644
--- a/src/components/Menu/index.web.tsx
+++ b/src/components/Menu/index.web.tsx
@@ -184,6 +184,7 @@ export function Outer({
     <DropdownMenu.Portal>
       <DropdownMenu.Content
         sideOffset={5}
+        collisionPadding={{left: 5, right: 5, bottom: 5}}
         loop
         aria-label="Test"
         className="dropdown-menu-transform-origin">
@@ -195,6 +196,7 @@ export function Outer({
             t.name === 'light' ? t.atoms.bg : t.atoms.bg_contrast_25,
             t.atoms.shadow_md,
             t.atoms.border_contrast_low,
+            a.overflow_auto,
             !reduceMotionEnabled && a.zoom_fade_in,
             style,
           ]}>
@@ -380,9 +382,8 @@ export function Divider() {
       style={flatten([
         a.my_xs,
         t.atoms.bg_contrast_100,
-        {
-          height: 1,
-        },
+        a.flex_shrink_0,
+        {height: 1},
       ])}
     />
   )