Files
web/packages/booking-flow/lib/components/BookingConfirmation/Header/header.module.css
Hrishikesh Vaipurkar c01f440651 Merged in feat/SW-3542-update-color-variables-to- (pull request #2970)
feat(SW-3542): Updated the color variables for MVP

Approved-by: Joakim Jäderberg
2025-10-17 09:22:03 +00:00

49 lines
718 B
CSS

.header,
.hgroup {
display: flex;
flex-direction: column;
}
.header {
gap: var(--Spacing-x2);
grid-area: header;
}
.hgroup {
gap: var(--Spacing-x-half);
}
.header .confirmTitle {
color: var(--Text-Accent-Primary);
}
.header .hotelTitle {
color: var(--Text-Heading);
}
.body {
max-width: 720px;
}
.actions {
border-radius: var(--Corner-radius-md);
display: grid;
grid-area: actions;
justify-content: flex-start;
}
@media screen and (min-width: 768px) {
.actions {
gap: var(--Spacing-x3);
grid-auto-columns: auto;
grid-auto-flow: column;
grid-template-columns: auto;
}
}
@media screen and (min-width: 1367px) {
.header {
padding-bottom: var(--Spacing-x4);
}
}