UNPKG

@nextui-org/theme

Version:

The default theme for NextUI components

22 lines (20 loc) 412 B
// src/utilities/scrollbar-hide.ts var scrollbar_hide_default = { ".scrollbar-hide": { "-ms-overflow-style": "none", "scrollbar-width": "none", "&::-webkit-scrollbar": { display: "none" } }, ".scrollbar-default": { "-ms-overflow-style": "auto", "scrollbar-width": "auto", "&::-webkit-scrollbar": { display: "block" } } }; export { scrollbar_hide_default };