From 57d7c93c90fecff6d3d87f6cd94389554b1e215b Mon Sep 17 00:00:00 2001 From: David Montero Crespo Date: Thu, 30 Jul 2026 20:25:52 +0200 Subject: [PATCH] fix(editor): corner-box dropdowns open upward The language menu and the account menu were written for the top bar and open downward; from the bottom-left corner box that means straight off the bottom of the viewport. The language menu flips via a scoped CSS rule; the account menu (pro) now anchors bottom-up whenever its trigger sits in the lower half of the screen. --- frontend/src/components/layout/LanguageSwitcher.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/src/components/layout/LanguageSwitcher.css b/frontend/src/components/layout/LanguageSwitcher.css index 36fb9c99..287fc501 100644 --- a/frontend/src/components/layout/LanguageSwitcher.css +++ b/frontend/src/components/layout/LanguageSwitcher.css @@ -75,3 +75,12 @@ color: #6e6e73; letter-spacing: 0.4px; } + +/* Inside the editor's bottom-left corner box the switcher sits at the + bottom edge of the screen — the menu must drop UP or it opens straight + into the void below the viewport. */ +.editor-corner-box .velxio-language-menu { + top: auto; + bottom: 110%; + margin: 0 0 6px; +}