albert.lol/styles/globals.scss
2022-08-14 21:24:33 +02:00

30 lines
479 B
SCSS

@tailwind base;
@tailwind components;
@layer base {
html {
scrollbar-width: thin;
scrollbar-color: #8a58e0 transparent;
}
body {
background-color: #000;
color: #fff;
}
}
@layer components {
::selection {
background-color: #8039e2;
color: #fff;
}
::-webkit-scrollbar {
width: 3px;
}
::-webkit-scrollbar-thumb {
background-color: #8a58e0;
border-radius: 10px;
}
}