refactor(css): use 1 global declaration for scrollbar

This commit is contained in:
Edouard Vanbelle
2026-04-13 11:04:13 +02:00
parent ce207ebad1
commit 4dff552299
7 changed files with 18 additions and 99 deletions
-19
View File
@@ -148,25 +148,6 @@ body {
color: var(--color-text-faint);
}
/* ── Scrollbar ── */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: var(--color-shadow-md);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--color-shadow-2xl);
}
* {
scrollbar-width: thin;
scrollbar-color: var(--color-shadow-md) transparent;
}
/* ── Top Header Bar ── */
.admin-header {
background: linear-gradient(135deg, var(--color-sidebar-bg-from) 0%, var(--color-sidebar-bg-to) 100%);