1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-03 21:00:55 +00:00
trezor-wallet/src/styles/history.less
Szymon Lesisz 6a9fde9f86 first
2017-12-13 12:01:37 +01:00

37 lines
573 B
Plaintext

.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: '-'
}
}
}
}
}