mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
27 lines
452 B
SCSS
27 lines
452 B
SCSS
@import 'transaction-breakdown-row/index';
|
|
|
|
.transaction-breakdown {
|
|
&__title {
|
|
border-bottom: 1px solid #d8d8d8;
|
|
padding-bottom: 4px;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
&__row-title {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
&__value {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
text-align: end;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
|
|
&--eth-total {
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
}
|