@heroui/theme
Version:
The default theme for HeroUI components
31 lines (29 loc) • 577 B
JavaScript
// src/utilities/scrollbar-hide.ts
var scrollbar_hide_default = {
/**
* Scroll Hide
*/
".scrollbar-hide": {
/* IE and Edge */
"-ms-overflow-style": "none",
/* Firefox */
"scrollbar-width": "none",
/* Safari and Chrome */
"&::-webkit-scrollbar": {
display: "none"
}
},
".scrollbar-default": {
/* IE and Edge */
"-ms-overflow-style": "auto",
/* Firefox */
"scrollbar-width": "auto",
/* Safari and Chrome */
"&::-webkit-scrollbar": {
display: "block"
}
}
};
export {
scrollbar_hide_default
};