From afbe55096ebe9a40f6780ccd6db5498419ba4fc0 Mon Sep 17 00:00:00 2001 From: Mark Eaton Date: Thu, 2 Apr 2026 12:40:49 +0000 Subject: [PATCH] fix the problem with vertical nav list items not displaying at 100% width --- misc/system-wide.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/misc/system-wide.css b/misc/system-wide.css index 6fd3b0d..413d5f9 100644 --- a/misc/system-wide.css +++ b/misc/system-wide.css @@ -64,4 +64,12 @@ textarea::placeholder, input::placeholder, .select2-selection__choice__display { border: 0; } +/* fix the problem with vertical nav list items not displaying at 100% width */ +li.nav-item { width: 100%; } + +li.nav-item a { + display: block; + width: 100%; +} + \ No newline at end of file