32 lines
439 B
CSS
32 lines
439 B
CSS
.bookingSummary {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x5);
|
|
padding: var(--Space-x2);
|
|
}
|
|
|
|
.bookingSummaryContent {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 80px;
|
|
}
|
|
|
|
.title {
|
|
color: var(--Scandic-Brand-Burgundy);
|
|
text-align: center;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.bookingSummary {
|
|
padding: 0;
|
|
}
|
|
|
|
.bookingSummaryContent {
|
|
flex-direction: row;
|
|
}
|
|
|
|
.title {
|
|
text-align: left;
|
|
}
|
|
}
|