Feat/SW-1149 handle status polling * feat(SW-1149): move terms and conditions sections to separate component and added copy * feat(SW-1149): Added client component to handle success callback for payment flow * fix: check for bookingCompleted status as well * feat(SW-1587): use alert instead of toast for showing payment errors * fix: added enum for payment callback status * fix: proper way of checking for multiple statuses * fix: update schema type * fix: use localised link to customer service * fix: update to use enum for status strings Approved-by: Arvid Norlin
64 lines
1.1 KiB
CSS
64 lines
1.1 KiB
CSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x3);
|
|
}
|
|
|
|
.title {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: var(--Spacing-x-half);
|
|
}
|
|
|
|
.guaranteeContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-one-and-half);
|
|
background-color: var(--Base-Surface-Primary-light-Normal);
|
|
border-radius: var(--Corner-radius-Medium);
|
|
padding: var(--Spacing-x-one-and-half) var(--Spacing-x2);
|
|
width: min(512px, 100%);
|
|
}
|
|
.checkbox {
|
|
display: flex;
|
|
gap: var(--Spacing-x-one-and-half);
|
|
}
|
|
|
|
.checkboxContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
width: min(800px, 100%);
|
|
}
|
|
|
|
.modalContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.infoButton {
|
|
display: flex;
|
|
gap: var(--Space-x05);
|
|
outline: none;
|
|
}
|
|
|
|
.modalText {
|
|
text-align: center;
|
|
}
|
|
|
|
.closeButton {
|
|
margin-top: var(--Space-x15);
|
|
width: min(164px, 100%);
|
|
outline: none;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.modalContainer {
|
|
width: 552px;
|
|
}
|
|
}
|