hide scrollbars

This commit is contained in:
horsefacts 2024-12-05 18:47:01 -05:00 committed by lucas-neynar
parent 99fbf0e79e
commit ee3a2365fe
No known key found for this signature in database

View File

@ -19,3 +19,12 @@ body {
background: var(--background);
font-family: 'Inter', Helvetica, Arial, sans-serif;
}
* {
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE and Edge */
}
*::-webkit-scrollbar {
display: none;
}