reddark
reddark copied to clipboard
Scrollbars visible in large counter mode look bad
Sorry to make an issue without a PR but I couldn't get it to run, the scrollbars visible in large counter mode aren't consistent with the theme of the rest of the counter and probably isn't intended behaviour (?), stealing this code from w3schools but I tested in Chrome Devtools and this should work for hiding scrollbars if that's intended:
/* Hide scrollbar for Chrome, Safari and Opera */
.example::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.example {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}