From 4e09d8e7bf2f226899c3b41efd85fde7055df430 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 9850c13..5fcd32f 100644 --- a/templates/custom/header.tmpl +++ b/templates/custom/header.tmpl @@ -168,6 +168,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; + }