commerce/components/common/SidebarLayout/SidebarLayout.module.css
2021-06-07 00:59:52 -03:00

21 lines
341 B
CSS

.root {
@apply relative h-full flex flex-col min-h-full w-full overflow-y-auto;
}
.header {
@apply sticky top-0 pl-4 py-4 pr-6
flex items-center justify-between
bg-accent-0 box-border w-full z-10;
min-height: 66px;
}
@screen lg {
.header {
min-height: 74px;
}
}
.container {
@apply flex flex-col flex-1 box-border;
}