fix(reset.css): use important on .hidden to override display styles

This commit is contained in:
Diocrafts
2026-04-11 11:18:05 +02:00
parent c343b26420
commit 57b99f962e
+2 -1
View File
@@ -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;
}