Files
srjp-td2/src/style.css
T

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;
}
}