diff options
Diffstat (limited to 'packages/meshbay-hub/src/meshbay_hub/static/style.css')
| -rw-r--r-- | packages/meshbay-hub/src/meshbay_hub/static/style.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/meshbay-hub/src/meshbay_hub/static/style.css b/packages/meshbay-hub/src/meshbay_hub/static/style.css index 851c07e..11c108b 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/style.css +++ b/packages/meshbay-hub/src/meshbay_hub/static/style.css @@ -152,7 +152,12 @@ a:hover { text-decoration: underline; } box-shadow: var(--shadow-lg); min-width: 220px; z-index: 120; - overflow: hidden; + /* The language submenu expands to ten entries inside this dropdown, which + overruns a short viewport. Clip horizontally as before, scroll vertically + rather than hiding the last languages where nothing can reach them. */ + max-height: calc(100vh - 72px); + overflow-x: hidden; + overflow-y: auto; padding: 4px 0; } |