From 57b99f962e3f9937e963d7bcda8ff906e6e87ed0 Mon Sep 17 00:00:00 2001 From: Diocrafts Date: Sat, 11 Apr 2026 11:18:05 +0200 Subject: [PATCH] fix(reset.css): use important on .hidden to override display styles --- static/css/base/reset.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/css/base/reset.css b/static/css/base/reset.css index 2fe97668..fcc3a7e3 100644 --- a/static/css/base/reset.css +++ b/static/css/base/reset.css @@ -22,5 +22,6 @@ html[dir="rtl"] .fa-sign-out-alt { } /* Utility: hide elements without inline style="" (CSP-safe) */ .hidden { - display: none; + /* biome-ignore lint/complexity/noImportantStyles: this case to overide the display when hidden is selected */ + display: none !important; }