Fix/STAY-135 & STAY-127 * fix: make quantity and delivery separate steps in mobile * fix: update design for delivery step in ancillary flow * fix: add error state for missing time * fix: only allow points or cash payment for ancillaries * fix: break out stepper to design system * fix: update design of select quantity step in add ancillaries flow * fix: add error states for quantity * fix: handle insufficient points case * fix: update stepper to include optional disabledMessage tooltip * fix: handle validations * fix: change name to camel case Approved-by: Bianca Widstam Approved-by: Chuma Mcphoy (We Ahead)
52 lines
1015 B
CSS
52 lines
1015 B
CSS
.summary {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
padding: var(--Space-x3) var(--Space-x2) var(--Space-x4);
|
|
width: 100%;
|
|
border-top: 1px solid var(--Border-Default);
|
|
}
|
|
|
|
.backgroundBox {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: var(--Surface-Primary-OnSurface-Default);
|
|
padding: var(--Space-x15);
|
|
gap: var(--Space-x2);
|
|
border-radius: var(--Corner-radius-md);
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
gap: var(--Space-x2);
|
|
}
|
|
|
|
.backgroundBox .buttons {
|
|
flex-direction: row;
|
|
gap: var(--Space-x2);
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.confirmButtons {
|
|
display: flex;
|
|
padding-left: var(--Space-x15);
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.priceButton {
|
|
display: flex;
|
|
gap: var(--Space-x05);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.summary {
|
|
padding: var(--Space-x3) var(--Space-x3) var(--Space-x4);
|
|
}
|
|
.buttons {
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
}
|