SW-3396 move my saved cards to design system * Move PaymentOption, PaymentOptionsGroup, PaymentIcons and MySavedCards (renamed SelectPaymentMethod) to design-system * Remove unused svg payment icons * cleanu * cleanup * trackUpdatePaymentMethod: remove hotelId argument that was never passed Approved-by: Anton Gunnarsson
42 lines
867 B
CSS
42 lines
867 B
CSS
.paymentOption {
|
|
position: relative;
|
|
background-color: var(--UI-Input-Controls-Surface-Normal);
|
|
padding: var(--Space-x15) var(--Space-x2);
|
|
border: 1px solid var(--Base-Border-Normal);
|
|
border-radius: var(--Corner-radius-md);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: var(--Spacing-x2);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.paymentOption.focused {
|
|
outline: 2px solid var(--UI-Input-Controls-Border-Focus);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.radio {
|
|
width: 24px;
|
|
height: 24px;
|
|
border: 1px solid var(--Base-Border-Normal);
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.radio.selected {
|
|
border: 8px solid var(--Surface-UI-Fill-Active);
|
|
}
|
|
|
|
.titleContainer {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Spacing-x-one-and-half);
|
|
}
|
|
|
|
.paymentOptionIcon {
|
|
position: absolute;
|
|
right: var(--Spacing-x3);
|
|
top: calc(50% - 16px);
|
|
}
|