From a4e096d1741bebe139bbf7d6b0f9ad3c66292346 Mon Sep 17 00:00:00 2001 From: Cay Date: Tue, 17 Mar 2026 10:08:24 +0000 Subject: [PATCH] menue verschoben. --- views/launcher.ejs | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/views/launcher.ejs b/views/launcher.ejs index 918b753..c294c0f 100644 --- a/views/launcher.ejs +++ b/views/launcher.ejs @@ -84,6 +84,36 @@ background: #c8960c; cursor: pointer; } + + /* ── Quick Menu: immer sichtbar, unten, horizontal ── */ + #quickmenu-toggle { + display: none !important; + } + + #quickmenu-panel { + position: fixed !important; + bottom: 0 !important; + left: 50% !important; + transform: translateX(-50%) !important; + top: auto !important; + right: auto !important; + + display: flex !important; + flex-direction: row !important; + flex-wrap: nowrap !important; + align-items: flex-end !important; + gap: 6px !important; + + padding: 8px 12px !important; + + transition: none !important; + transform: translateX(-50%) !important; + } + + #quickmenu-panel.hidden, + #quickmenu-panel[style*="display: none"] { + display: flex !important; + }