29 lines
560 B
CSS
29 lines
560 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
color-scheme: dark;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
min-height: 100dvh;
|
|
background-color: #020617; /* slate-950 */
|
|
}
|
|
|
|
/* Custom Scrollbar for action columns */
|
|
.overflow-x-auto::-webkit-scrollbar {
|
|
height: 6px;
|
|
}
|
|
.overflow-x-auto::-webkit-scrollbar-track {
|
|
background: rgba(15, 23, 42, 0.3);
|
|
border-radius: 9999px;
|
|
}
|
|
.overflow-x-auto::-webkit-scrollbar-thumb {
|
|
background: rgba(100, 116, 139, 0.4);
|
|
border-radius: 9999px;
|
|
}
|
|
.overflow-x-auto::-webkit-scrollbar-thumb:hover {
|
|
background: rgba(245, 158, 11, 0.5);
|
|
}
|