diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-04-22 21:24:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-22 21:24:50 +0100 |
commit | bcd88b088a43d64f34da5ec0d16dadaa74beedb3 (patch) | |
tree | a7250e9ec4f0cd84b91eaa2803ab7acc0bbd108e | |
parent | 243769e6577f1fc2a23dc4542bd57eab3bba45de (diff) | |
download | voidsky-bcd88b088a43d64f34da5ec0d16dadaa74beedb3.tar.zst |
add maxwidth to app language dropdown (#3635)
-rw-r--r-- | src/components/AppLanguageDropdown.web.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/AppLanguageDropdown.web.tsx b/src/components/AppLanguageDropdown.web.tsx index c3c8575a1..a106d9966 100644 --- a/src/components/AppLanguageDropdown.web.tsx +++ b/src/components/AppLanguageDropdown.web.tsx @@ -71,6 +71,7 @@ export function AppLanguageDropdown() { color: t.atoms.text.color, background: t.atoms.bg.backgroundColor, padding: 4, + maxWidth: '100%', }}> {APP_LANGUAGES.filter(l => Boolean(l.code2)).map(l => ( <option key={l.code2} value={l.code2}> |