File size: 560 Bytes
a8aec61 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--color-border-default: 255, 255, 255, 0.2;
--scrollbar-width: 0.1rem;
}
body {
@apply bg-background/80 text-secondary;
}
}
::-webkit-scrollbar {
width: var(--scrollbar-width);
}
::-webkit-scrollbar-thumb {
--tw-border-opacity: 1;
@apply bg-border;
border-color: rgba(255, 255, 255, var(--tw-border-opacity));
border-radius: 9999px;
border-width: 1px;
}
::-webkit-scrollbar-track {
background-color: transparent;
border-radius: 9999px;
}
|