From 5984bae2b963df93d181a223d499329fdc5f101f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rton=20Lente?= Date: Mon, 17 Feb 2025 19:22:25 +0100 Subject: [PATCH] Fix: Style navbar dropdown item flex justification for browser Chrome globally Fix style navbar dropdown item flex justification for browser Chrome in all themes. --- templates/custom/header.tmpl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/templates/custom/header.tmpl b/templates/custom/header.tmpl index 91317cb..19b9b31 100644 --- a/templates/custom/header.tmpl +++ b/templates/custom/header.tmpl @@ -174,6 +174,11 @@ strong.attention-caution, span.attention-caution { color: var(--color-red-dark-1); } + + /* Make Navbar dropdown item left-aligned. Needed from Chromium v133.x. */ + #navbar .dropdown .item { + justify-content: flex-start; + }