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)
39 lines
614 B
CSS
39 lines
614 B
CSS
.ancillaryCard {
|
|
display: flex;
|
|
flex-direction: column;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.imageContainer {
|
|
position: relative;
|
|
width: 100%;
|
|
aspect-ratio: 16/9;
|
|
border-radius: var(--Corner-radius-md);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.image {
|
|
object-fit: cover;
|
|
}
|
|
|
|
.price {
|
|
display: flex;
|
|
gap: var(--Space-x1);
|
|
color: var(--UI-Text-High-contrast);
|
|
}
|
|
|
|
.contentContainer {
|
|
padding: var(--Space-x15) 0 0 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.ancillaryTitle {
|
|
color: var(--UI-Text-High-contrast);
|
|
}
|
|
.ancillaryPoints {
|
|
color: var(--UI-Text-High-contrast);
|
|
text-align: right;
|
|
}
|