30 lines
412 B
CSS
30 lines
412 B
CSS
.modalContent {
|
|
display: grid;
|
|
gap: var(--Space-x3);
|
|
width: 100%;
|
|
}
|
|
|
|
.innerModalContent {
|
|
display: grid;
|
|
gap: var(--Space-x2);
|
|
align-items: center;
|
|
justify-items: center;
|
|
}
|
|
|
|
.title {
|
|
color: var(--Text-Heading);
|
|
text-align: center;
|
|
}
|
|
|
|
.newPrice {
|
|
display: flex;
|
|
gap: var(--Space-x1);
|
|
align-items: center;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.modalContent {
|
|
width: 352px;
|
|
}
|
|
}
|