@cn-ui/core
Version:
The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.
36 lines (29 loc) • 689 B
CSS
::-webkit-scrollbar {
width: 0.25rem;
height: 0.25rem;
}
::-webkit-scrollbar-thumb {
background-color: var(--cn-bg-design-border);
border-radius: 0.5rem;
}
::-webkit-scrollbar-corner {
background-color: transparent;
}
::-webkit-scrollbar-track {
background-color: var(--cn-bg-design-ground, transparent);
}
@supports not selector(::-webkit-scrollbar) {
html {
scrollbar-width: thin;
scrollbar-color: var(--cn-bg-design-border) var(--cn-bg-design-ground, transparent);
}
}
.scrollbar-none {
scrollbar-width: none;
/* Firefox */
-ms-overflow-style: none;
}
.scrollbar-none::-webkit-scrollbar {
width: 0;
height: 0;
}