feat: implement dashboard layout shell with responsive sidebar, global dark theme, and navigation pages

This commit is contained in:
Poyraz Avsever
2026-05-08 11:50:18 +03:00
parent 9adc34418e
commit 0233122b6d
13 changed files with 350 additions and 409 deletions
+18
View File
@@ -64,3 +64,21 @@
transition: background-color 5000s ease-in-out 0s;
}
}
@layer utilities {
.tiny-scrollbar::-webkit-scrollbar {
width: 4px;
height: 4px;
}
.tiny-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.tiny-scrollbar::-webkit-scrollbar-thumb {
background: theme('colors.primary.DEFAULT' / 30%);
border-radius: 4px;
}
.tiny-scrollbar::-webkit-scrollbar-thumb:hover {
background: theme('colors.primary.DEFAULT' / 60%);
}
}