You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/styles/history.less

35 lines
563 B

.history {
flex: 1;
padding: 10px;
display: flex;
flex-direction: column;
border: 1px solid red;
.history-transaction {
.amount, .time, .address {
margin-left: 10px;
}
&.in {
color: green;
.amount {
&:before {
content: '+'
}
}
}
&.out {
color: red;
.amount {
&:before {
content: '-'
}
}
}
}
}