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
58 lines
1.0 KiB
CSS
58 lines
1.0 KiB
CSS
.card {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Spacing-x1);
|
|
padding: var(--Spacing-x2) var(--Spacing-x-one-and-half);
|
|
border-radius: var(--Corner-radius-Medium);
|
|
background-color: var(--Base-Surface-Subtle-Normal);
|
|
}
|
|
|
|
.addCreditCard {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.guaranteeCost {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
padding: var(--Spacing-x2);
|
|
align-items: flex-end;
|
|
gap: var(--Spacing-x3);
|
|
border-radius: var(--Corner-radius-Medium);
|
|
background-color: var(--Base-Surface-Subtle-Normal);
|
|
}
|
|
|
|
.guaranteeCostText {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.termsAndConditions {
|
|
display: flex;
|
|
gap: var(--Spacing-x2);
|
|
}
|
|
|
|
.section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
}
|
|
|
|
.paymentOptionContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-one-and-half);
|
|
}
|
|
|
|
.loading {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 640px;
|
|
max-width: 100%;
|
|
height: 640px;
|
|
max-height: 100%;
|
|
}
|