114 lines
1.7 KiB
CSS
114 lines
1.7 KiB
CSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x05);
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
gap: var(--Space-x15);
|
|
margin-top: var(--Space-x5);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.container {
|
|
gap: var(--Space-x3);
|
|
}
|
|
.header {
|
|
align-items: center;
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
.deliveryTime {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: var(--Space-x1);
|
|
color: var(--Base-Text-High-contrast);
|
|
}
|
|
|
|
.ancillaryMobile {
|
|
background-color: var(--Background-Primary);
|
|
border-radius: var(--Corner-Radius-md);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.ancillaryDesktop {
|
|
display: none;
|
|
padding: var(--Space-x2);
|
|
background-color: var(--Background-Primary);
|
|
border-radius: var(--Corner-Radius-md);
|
|
flex-direction: column;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.ancillaryMobile {
|
|
display: none;
|
|
}
|
|
|
|
.ancillaryDesktop {
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
.paymentMobileWrapper {
|
|
display: flex;
|
|
}
|
|
|
|
.paymentMobile {
|
|
display: flex;
|
|
gap: var(--Space-x2);
|
|
align-items: center;
|
|
}
|
|
.commentMobile {
|
|
margin-bottom: var(--Space-x3);
|
|
}
|
|
|
|
.footerMobile {
|
|
display: flex;
|
|
margin-top: var(--Space-x4);
|
|
}
|
|
|
|
.specification {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: var(--Space-x1) 0;
|
|
}
|
|
|
|
.name {
|
|
display: flex;
|
|
gap: var(--Space-x1);
|
|
align-items: center;
|
|
}
|
|
|
|
.payment {
|
|
display: flex;
|
|
gap: var(--Space-x2);
|
|
align-items: center;
|
|
}
|
|
|
|
.footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: var(--Space-x1) 0;
|
|
}
|
|
|
|
.comment {
|
|
display: flex;
|
|
gap: var(--Space-x15);
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
gap: var(--Space-x2);
|
|
}
|
|
|
|
.ancillaryComment {
|
|
color: var(--UI-Text-Medium-contrast);
|
|
}
|