mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 15:36:58 +00:00
23 lines
284 B
CSS
23 lines
284 B
CSS
.root {
|
|
@apply w-full relative;
|
|
height: 360px;
|
|
min-width: 100%;
|
|
}
|
|
|
|
.container {
|
|
@apply flex flex-row items-center;
|
|
}
|
|
|
|
.container > * {
|
|
@apply relative flex-1 px-16 py-4 h-full;
|
|
min-height: 360px;
|
|
}
|
|
|
|
.primary {
|
|
@apply bg-accent-0;
|
|
}
|
|
|
|
.secondary {
|
|
@apply bg-accent-9;
|
|
}
|