Feat/SW-1368 1369 Guarantee late arrival * feat(SW-1368-SW-1369): guarantee late arrival for confirmation page and my stay * feat(SW-1368-SW-1369): guarantee late arrival updated design * feat(SW-1368-SW-1369): add translations * feat(SW-1368-SW-1369): add translations * feat(SW-1368-SW-1369): fix merge with master * feat(SW-1368-SW-1369): add translations * feat(SW-1368-SW-1369): add redirect with refId * feat(SW-1368-SW-1369): if booking completed redirect to confirmation page * feat(SW-1368-SW-1369): fix comments pr * feat(SW-1368-SW-1369): fix comments pr * feat(SW-1368-SW-1369): fix rebase master * feat(SW-1368-SW-1369): fix duplicate flex rate check * feat(SW-1368-SW-1369): if any room is flex, card must be used * feat(SW-1368-SW-1369): move callback route * feat(SW-1368-SW-1369): top align checkbox * feat(SW-1368-SW-1369): top align checkbox Approved-by: Tobias Johansson Approved-by: Niclas Edenvin
96 lines
1.6 KiB
CSS
96 lines
1.6 KiB
CSS
.room {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
}
|
|
|
|
.benefits {
|
|
align-items: center;
|
|
border: 1px solid var(--Base-Border-Subtle);
|
|
border-radius: var(--Corner-radius-Medium);
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
padding: var(--Spacing-x1) var(--Spacing-x-one-and-half);
|
|
width: max-content;
|
|
}
|
|
|
|
.booking {
|
|
background-color: var(--Base-Background-Primary-Normal);
|
|
border-radius: var(--Corner-radius-Large);
|
|
display: grid;
|
|
gap: var(--Spacing-x2);
|
|
padding: var(--Spacing-x2) var(--Spacing-x2) var(--Spacing-x3)
|
|
var(--Spacing-x2);
|
|
}
|
|
|
|
.img {
|
|
width: 100%;
|
|
}
|
|
|
|
.roomDetails {
|
|
display: grid;
|
|
gap: var(--Spacing-x2);
|
|
}
|
|
|
|
.roomName {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-half);
|
|
grid-column: 1/-1;
|
|
}
|
|
|
|
.details {
|
|
display: grid;
|
|
gap: var(--Spacing-x-half) var(--Spacing-x3);
|
|
list-style: none;
|
|
}
|
|
|
|
.listItem {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.guest {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-half);
|
|
}
|
|
|
|
@media screen and (max-width: 1366px) {
|
|
.details {
|
|
padding-bottom: var(--Spacing-x1);
|
|
}
|
|
|
|
.details p:nth-of-type(even) {
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.header {
|
|
grid-template-columns: 1fr auto;
|
|
}
|
|
|
|
.booking {
|
|
gap: var(--Spacing-x3);
|
|
grid-template-columns: auto 1fr;
|
|
padding: var(--Spacing-x2) var(--Spacing-x3) var(--Spacing-x2)
|
|
var(--Spacing-x2);
|
|
}
|
|
|
|
.roomDetails {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
.guest {
|
|
align-items: flex-end;
|
|
align-self: flex-end;
|
|
}
|
|
}
|