Unified settings modal + dashboard shell redesign #69

Merged
uz1mani merged 107 commits from staging into main 2026-03-26 09:15:33 +00:00
33 changed files with 2575 additions and 252 deletions
Showing only changes of commit b74742e15e - Show all commits

View File

@@ -69,6 +69,26 @@
transform-style: preserve-3d; transform-style: preserve-3d;
} }
/* * Thin subtle scrollbar */
* {
scrollbar-width: thin;
scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}
*::-webkit-scrollbar {
width: 6px;
height: 6px;
}
*::-webkit-scrollbar-track {
background: transparent;
}
*::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.08);
border-radius: 3px;
}
*::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.15);
}
/* * Scrollbar hide - for horizontal scroll navs */ /* * Scrollbar hide - for horizontal scroll navs */
.scrollbar-hide { .scrollbar-hide {
-ms-overflow-style: none; -ms-overflow-style: none;