Files
commerce/src/components/modules/checkout/CheckoutBill/CheckoutBill.module.scss
2021-10-19 18:48:10 +07:00

34 lines
578 B
SCSS

.warpper {
padding: 3.2rem;
min-width: 100%;
@screen lg {
max-width: 56.3rem;
@apply flex justify-between flex-col;
}
.title {
display: none;
font-weight: bold;
font-size: 2rem;
line-height: 2.8rem;
@screen md {
display: block;
}
}
.list {
min-height: 52.8rem;
}
.bot {
.price {
margin-top: 3.2rem;
.line {
@apply flex justify-between items-center text-label;
.total {
font-weight: bold;
font-size: 2rem;
line-height: 2.8rem;
}
}
}
}
}