mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
24 lines
350 B
SCSS
24 lines
350 B
SCSS
@import './transaction-breakdown-row/index';
|
|
|
|
.transaction-breakdown {
|
|
&__card {
|
|
background: $white;
|
|
height: 100%;
|
|
}
|
|
|
|
&__row-title {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
&__value {
|
|
text-align: end;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
|
|
&--eth-total {
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
}
|