This repository has been archived on 2023-12-14. You can view files and clone it, but cannot push or open issues or pull requests.
legacy-website/assets/css/scrollbar.css
2023-05-10 16:40:36 +02:00

30 lines
No EOL
643 B
CSS

/* Firefox */
* {
scrollbar-width: thin;
scrollbar-color: var(--color-space-cadet) #00000000;
/* Set the thumb and track colors */
background-clip: padding-box;
/* Remove the background */
}
/* Webkit & Blink */
*::-webkit-scrollbar {
width: 6px;
background-color: #00000000;
background-clip: padding-box;
/* Remove the background */
}
*::-webkit-scrollbar-thumb {
background-color: var(--color-space-cadet);
border-radius: 5px;
}
*::-webkit-scrollbar-track {
background-color: #00000000;
/* Set a fallback color */
}
*::-webkit-scrollbar-track-piece {
background-color: #00000000;
}