mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
21 lines
320 B
CSS
21 lines
320 B
CSS
.root {
|
|
@apply relative h-full flex flex-col min-h-full w-full;
|
|
}
|
|
|
|
.header {
|
|
@apply sticky top-0 pl-4 py-4 pr-6
|
|
flex items-center justify-between
|
|
bg-accent-0 box-border w-full;
|
|
min-height: 66px;
|
|
}
|
|
|
|
@screen lg {
|
|
.header {
|
|
min-height: 74px;
|
|
}
|
|
}
|
|
|
|
.container {
|
|
@apply flex flex-col flex-1 box-border;
|
|
}
|