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;
|
|
}
|