mirror of
https://github.com/Spythere/srjp-td2.git
synced 2026-05-03 13:38:12 +00:00
41 lines
548 B
CSS
41 lines
548 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
color-scheme: dark;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
#app {
|
|
width: 100%;
|
|
height: 100vh;
|
|
}
|
|
|
|
/* Scrollbar */
|
|
/* width */
|
|
::-webkit-scrollbar {
|
|
width: theme('size.2');
|
|
}
|
|
|
|
/* Track */
|
|
::-webkit-scrollbar-track {
|
|
background: theme('colors.stone.900');
|
|
border-radius: theme('borderRadius.md');
|
|
}
|
|
|
|
/* Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
background: theme('colors.stone.400');
|
|
border-radius: theme('borderRadius.md');
|
|
}
|
|
|
|
@media print {
|
|
:root {
|
|
color-scheme: light;
|
|
}
|
|
}
|