File size: 711 Bytes
a1ddd34 fe029e8 | 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 33 34 35 36 37 38 39 | @tailwind base;
@tailwind components;
@tailwind utilities;
body {
@apply bg-black text-white antialiased;
}
/* Slim, dark-mode scrollbars — replaces the chunky default */
* {
scrollbar-width: thin;
scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}
*::-webkit-scrollbar {
width: 8px;
height: 8px;
}
*::-webkit-scrollbar-track {
background: transparent;
}
*::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.06);
border-radius: 9999px;
border: 2px solid transparent;
background-clip: content-box;
}
*::-webkit-scrollbar-thumb:hover {
background: rgba(244, 63, 94, 0.4);
background-clip: content-box;
}
*::-webkit-scrollbar-corner {
background: transparent;
}
|