Files
commerce/src/components/modules/checkout/CheckoutPage/CheckoutPage.module.scss
lytrankieio123 bbbf4f7adc 🎨 styles: checkout page
:%s
2021-10-20 16:40:42 +07:00

54 lines
1.3 KiB
SCSS

@import "../../../../styles/utilities";
.warrper{
@apply flex w-full;
min-height: 100%;
.right {
display: none;
@screen lg {
display: block;
min-width: 45rem;
}
@screen xl {
min-width: 56.3rem;
}
}
.left {
@apply w-full border-r-2 border-solid border-line;
}
.mobile {
@apply hidden;
&.isShow{
@apply block;
@screen lg {
@apply hidden;
}
}
.modal {
background: rgba(0, 0, 0, 0.5);
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 10000;
.content{
@apply spacing-horizontal;
margin-top: 3rem;
padding-top: 6.4rem ;
padding-bottom: 5rem;
background-color: white;
overflow: auto;
height: 100%;
border-radius: 2.4rem 2.4rem 0 0;
.head{
@apply flex justify-between;
h3{
@apply heading-3 font-bold;
color:var(--text-base);
}
}
}
}
}
}