ChasMusic (he/him) on Nostr: The code is as follows: /* Works on Firefox */ * { scrollbar-width: auto !important; ...
The code is as follows:
/* Works on Firefox */
* {
scrollbar-width: auto !important;
scrollbar-color: #fff #777 !important;
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 16px !important;
}
*::-webkit-scrollbar-track {
background: white !important;
}
*::-webkit-scrollbar-thumb {
background-color: darkgrey !important;
border-radius: 20px !important;
border: 3px solid black !important;
}
/* Works on Firefox */
* {
scrollbar-width: auto !important;
scrollbar-color: #fff #777 !important;
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 16px !important;
}
*::-webkit-scrollbar-track {
background: white !important;
}
*::-webkit-scrollbar-thumb {
background-color: darkgrey !important;
border-radius: 20px !important;
border: 3px solid black !important;
}