1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/components/app/transaction-breakdown/index.scss
Guillaume Roux ad28c81a39
General backgrounds and borders design token updates (#13764)
Co-authored-by: Guillaume Roux <guillaumeroux123@gmail.com>
Co-authored-by: George Marshall <george.marshall@consensys.net>
Co-authored-by: David Walsh <davidwalsh83@gmail.com>
2022-03-16 15:49:25 +01:00

35 lines
622 B
SCSS

@import 'transaction-breakdown-row/index';
.transaction-breakdown {
&__title {
padding-bottom: 4px;
padding-top: 8px;
font-size: 14px;
color: var(--color-text-default);
font-weight: bold;
text-transform: capitalize;
}
&__row-title {
text-transform: capitalize;
}
&__value {
display: flex;
justify-content: flex-end;
text-align: end;
overflow: hidden;
text-overflow: ellipsis;
&--eth-total {
font-weight: bold;
color: var(--color-text-default);
}
&--amount {
font-weight: bold;
color: var(--color-text-default);
}
}
}