custom scrollbar
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Pavel 2023-11-13 09:41:00 +03:00
parent e9e8af365a
commit 4c37409a54

View File

@ -24,3 +24,22 @@ body {
body nav:first-of-type {
padding: 0 calc((100vw - 60rem)/2);
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: var(--button-hover);
}
::-webkit-scrollbar-thumb:hover {
background: #384e62;
}