Add override for the scrollbar

This commit is contained in:
KingRainbow44 2023-04-06 22:30:49 -04:00
parent ce27b005f8
commit db8aa3f6f1
No known key found for this signature in database
GPG Key ID: FC2CB64B00D257BE

View File

@ -1,6 +1,7 @@
html {
--background-color: #346b77;
--secondary-color: #418493;
--accent-color: #5abcb9;
--text-primary-color: #FFFFFF;
@ -42,3 +43,16 @@ body {
display: flex;
}
}
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: var(--accent-color);
border-radius: 10px;
}