From a60d4f1b7e3e8edbd3351a335d44d429c49cad04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rton=20Lente?= Date: Mon, 17 Feb 2025 17:14:43 +0100 Subject: [PATCH] Fix: Style navbar dropdown item flex justification for browser Chrome --- public/assets/css/theme-bthree-dark.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/assets/css/theme-bthree-dark.css b/public/assets/css/theme-bthree-dark.css index 18583bb..e98f637 100644 --- a/public/assets/css/theme-bthree-dark.css +++ b/public/assets/css/theme-bthree-dark.css @@ -535,3 +535,8 @@ progress::-webkit-progress-value { progress::-moz-progress-bar { background-color: var(--color-primary); /* Color of the filled portion */ } + +/* Style Overrides. */ +#navbar .dropdown .item { + justify-content: flex-start !important; +}