Build [v1.4.0] - Audit Dashboard & LDAP Restoration
This commit is contained in:
@@ -5,19 +5,39 @@
|
||||
@import "bootstrap-icons/font/bootstrap-icons.css";
|
||||
|
||||
:root {
|
||||
--background: #ffffff;
|
||||
--foreground: #171717;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--background: #0a0a0a;
|
||||
--foreground: #ededed;
|
||||
}
|
||||
/* slate-950 forced as default to prevent white flash */
|
||||
--background: #020617;
|
||||
--foreground: #f1f5f9;
|
||||
}
|
||||
|
||||
body {
|
||||
color: var(--foreground);
|
||||
background: var(--background);
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
background-color: var(--background);
|
||||
font-family: inherit; /* Use Next.js font if defined, or system default */
|
||||
}
|
||||
|
||||
/* Custom Scrollbar Styling */
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: #020617; /* slate-950 */
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #1e293b; /* slate-800 */
|
||||
border-radius: 10px;
|
||||
border: 2px solid #020617; /* adds padding effect */
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: #334155; /* slate-700 */
|
||||
}
|
||||
|
||||
/* Support for Firefox (limited) */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #1e293b #020617;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user