mirror of
https://github.com/trezor/trezor-wallet
synced 2025-01-03 21:00:55 +00:00
37 lines
573 B
Plaintext
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: '-'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|