[READ-ONLY] Mirror of https://github.com/flo-bit/skywatched. review movies and tv shows, based on at proto
skywatched.app
429 B
24 lines
1@import 'tailwindcss/base';
2@import 'tailwindcss/components';
3@import 'tailwindcss/utilities';
4
5::selection {
6 @apply bg-accent-800/50 text-accent-50;
7}
8
9/* width */
10::-webkit-scrollbar {
11 width: 5px;
12 height: 5px;
13}
14
15/* Track */
16::-webkit-scrollbar-track {
17 @apply bg-transparent;
18}
19
20/* Handle */
21::-webkit-scrollbar-thumb {
22 @apply bg-base-600 hover:bg-accent-500 transition-colors duration-150;
23 border-radius: 5px;
24}