Files
web/packages/booking-flow/lib/components/EnterDetails/Payment/payment.module.css
Erik Tiekstra 88644597df chore: Replaced deprecated Spacing variables with current values
Approved-by: Matilda Landström
2025-11-12 12:56:22 +00:00

64 lines
1007 B
CSS

.paymentSection {
display: flex;
flex-direction: column;
gap: var(--Space-x4);
}
.disabled {
opacity: 0.5;
pointer-events: none;
}
.paymentContainer {
display: flex;
flex-direction: column;
gap: var(--Space-x4);
max-width: 696px;
}
.section {
display: flex;
flex-direction: column;
gap: var(--Space-x2);
}
.paymentOptionContainer {
display: flex;
flex-direction: column;
gap: var(--Space-x15);
}
.submitButton {
display: none;
}
.paymentContainer .link {
font-weight: 500;
font-size: var(--Typography-Caption-Regular-fontSize);
}
.terms {
display: flex;
flex-direction: row;
gap: var(--Space-x15);
}
.checkboxContainer {
background-color: var(--Surface-Secondary-Default);
border-radius: var(--Corner-radius-Large);
padding: var(--Space-x2);
}
@media screen and (min-width: 1367px) {
.submitButton {
display: flex;
align-self: flex-start;
}
}
@media screen and (max-width: 1366px) {
.paymentContainer {
margin-bottom: 200px;
}
}