reddark icon indicating copy to clipboard operation
reddark copied to clipboard

Scrollbars visible in large counter mode look bad

Open RebootedDuck opened this issue 2 years ago • 0 comments

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 */
}

RebootedDuck avatar Jun 11 '23 16:06 RebootedDuck