commerce/components/checkout/CheckoutSidebarView/CheckoutSidebarView.module.css
2021-05-25 15:16:17 -03:00

17 lines
237 B
CSS

.root {
@apply h-full flex flex-col relative w-full;
height: calc(100vh + 300px);
}
.root.empty {
@apply bg-secondary text-secondary;
}
.root.success {
@apply bg-green text-white;
}
.root.error {
@apply bg-red text-white;
}