Archived
1
0
This repository has been archived on 2024-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
cyca/resources/css/base/scrollbar.css
2022-01-12 00:35:37 +01:00

25 lines
525 B
CSS
Executable File
Vendored

/* The emerging W3C standard
that is currently Firefox-only */
* {
scrollbar-width: thin;
scrollbar-color: theme("colors.white") theme("colors.gray.300");
&:dark {
scrollbar-color: theme("colors.gray.900") theme("colors.gray.800");
}
}
/* Works on Chrome/Edge/Safari */
*::-webkit-scrollbar {
@apply w-2;
}
*::-webkit-scrollbar-track {
@apply bg-gray-300;
@apply dark:bg-gray-900;
}
*::-webkit-scrollbar-thumb {
@apply rounded;
@apply bg-white;
@apply dark:bg-gray-500;
}