Files
kredits-web/app/styles/components/_budget-balances.scss
T
2020-09-29 17:58:38 +02:00

38 lines
524 B
SCSS

section#funds {
table.token-balances {
opacity: 1;
transition: opacity 0.3s linear;
&.loading {
opacity: 0;
}
thead {
display: none;
}
th, td {
font-size: 1.2rem;
vertical-align: text-bottom;
}
th {
text-align: left;
padding-right: 1.2rem;
}
td {
text-align: right;
&.amount {
font-size: 1.5rem;
padding-right: 1.2rem;
}
&.fiat-amount {
color: rgba(255,255,255,0.8);
}
}
}
}