feat(SW-3514): Add variant of join friends card with membership id input * Move membershipId input in enter details to join card Add booking flow feature flag to move membershipId into join card and hide login button. Currently only applies to first room. * Add sas join card to multiroom Approved-by: Hrishikesh Vaipurkar
52 lines
911 B
CSS
52 lines
911 B
CSS
.cardContainer {
|
|
align-self: flex-start;
|
|
background-color: var(--Surface-Primary-Hover-Accent);
|
|
border-radius: var(--Corner-radius-lg);
|
|
display: grid;
|
|
gap: var(--Space-x2);
|
|
padding: var(--Space-x2);
|
|
grid-template-areas:
|
|
"price"
|
|
"checkbox"
|
|
"terms";
|
|
width: min(100%, 696px);
|
|
}
|
|
|
|
.priceContainer {
|
|
grid-area: price;
|
|
margin-bottom: var(--Space-x1);
|
|
}
|
|
|
|
.price {
|
|
color: var(--Text-Accent-Primary);
|
|
}
|
|
|
|
.checkBox {
|
|
align-self: center;
|
|
grid-area: checkbox;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x2);
|
|
}
|
|
|
|
.terms {
|
|
grid-area: terms;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.cardContainer {
|
|
grid-template-columns: 1fr 1fr;
|
|
grid-template-rows: auto auto;
|
|
gap: var(--Space-x3);
|
|
grid-template-areas:
|
|
"price checkbox"
|
|
"terms terms";
|
|
}
|
|
|
|
.priceContainer {
|
|
margin-bottom: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|