Skip to content

Instantly share code, notes, and snippets.

@yinkakun
Last active October 9, 2023 10:11
Show Gist options
  • Save yinkakun/2d029aa46e3a289e8807c3b4d865af22 to your computer and use it in GitHub Desktop.
Save yinkakun/2d029aa46e3a289e8807c3b4d865af22 to your computer and use it in GitHub Desktop.
/* GLOBALLY */
* {
-ms-overflow-style: none; /* Internet Explorer 10+ */
scrollbar-width: none; /* Firefox */
}
*::-webkit-scrollbar {
display: none; /* Safari and Chrome */
}
/* SPECIFIC */
@layer utilities {
.scrollbar-hide {
/* IE and Edge */
-ms-overflow-style: none !important;
/* Firefox */
scrollbar-width: none !important;
}
.scrollbar-hide::-webkit-scrollbar {
/* Safari and Chrome */
display: none;
width: 0 !important;
}
.scrollbar-default {
/* IE and Edge */
-ms-overflow-style: 'auto';
/* Firefox */
scrollbar-width: 'auto';
}
.scrollbar-default::-webkit-scrollbar {
/* Safari and Chrome */
display: 'block';
width: 'auto';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment