Files
kredits-web/app/styles/components/_budget-balances.scss
raucao dbedf1dbe8 Use new balance APIs from akkounts
* Use sats integer values instead of floats
* Add lightning Network account balance
* Use icons and titles/descriptions to discern between balance types
* Use more flexible config for balances (to add e.g. RBTC or BTC ecash
  later)
2024-01-12 14:59:57 +03:00

52 lines
737 B
SCSS

section#funds {
@include media-max(small) {
margin-bottom: 2rem;
}
table.token-balances {
opacity: 1;
transition: opacity 0.3s linear;
&.loading {
opacity: 0;
}
thead {
display: none;
}
th, td {
vertical-align: text-bottom;
img {
max-height: 1.5rem;
max-width: 1.5rem;
}
}
th {
font-size: 1.5rem;
text-align: left;
padding-right: 1rem;
}
td {
text-align: right;
&.amount {
font-size: 2rem;
padding-right: 1.2rem;
}
&.fiat-amount {
font-size: 1.2rem;
color: rgba(255,255,255,0.8);
}
span.unit {
font-size: 1.5rem;
}
}
}
}