chore(BOOK-739): replace caption with typography * chore(BOOK-739): replace caption with typography * chore(BOOK-739): refactor div * chore(BOOK-739): refactor badge * chore(BOOK-739): remove span * chore(BOOK-739): skeleton update * chore(BOOK-739): update * chore(BOOK-739): update reward * chore(BOOK-739): update voucher currency Approved-by: Erik Tiekstra
27 lines
465 B
CSS
27 lines
465 B
CSS
.chequeCard {
|
|
padding: var(--Space-x15);
|
|
background-color: var(--Base-Surface-Secondary-light-Normal);
|
|
border-radius: var(--Corner-radius-md);
|
|
margin: 0;
|
|
width: 100%;
|
|
display: grid;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.chequeRow,
|
|
.cheque {
|
|
display: flex;
|
|
gap: var(--Space-x05);
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
color: var(--Text-Default);
|
|
}
|
|
|
|
.secondaryText {
|
|
color: var(--Text-Secondary);
|
|
}
|
|
|
|
.cheque {
|
|
justify-content: end;
|
|
}
|