commerce/components/ui/Sidebar/Sidebar.module.css

15 lines
367 B
CSS

.root {
@apply fixed inset-0 overflow-hidden h-full z-50;
}
.sidebar {
@apply h-full flex flex-col text-base bg-accent-0 shadow-xl overflow-y-auto;
min-width: 335px;
}
.backdrop {
@apply absolute inset-0 bg-black bg-opacity-40 transition transition-opacity duration-100 ease-linear;
backdrop-filter: blur(0.8px);
-webkit-backdrop-filter: blur(0.8px);
}