1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-10 11:25:28 +02:00
market/src/components/@shared/Price/PriceUnit.module.css
mihaisc 67621f5639
Various veOCEAN features (#1743)
* change top message, fixes, allocations

* lock ocean tooltip

* asset stats tweaks

* front page allocations refactor

* wording, run empty table messages through markdown

* footer stats tweaks

* profile tinkering

* fix allocations in table

* Tweak lock action logic

* fix allocation 0

* sort by allocation

* search ordering fixes

Co-authored-by: Matthias Kretschmann <m@kretschmann.io>
2022-10-17 15:56:03 +01:00

47 lines
805 B
CSS

.price {
display: inline-block;
font-weight: var(--font-weight-bold);
font-family: var(--font-family-base);
color: var(--font-color-text);
line-height: 1.2;
}
.price > div:first-child {
white-space: nowrap;
}
.symbol {
font-weight: var(--font-weight-base);
color: var(--color-secondary);
font-size: var(--font-size-base);
}
.price.large {
font-size: var(--font-size-large);
}
.price.small {
display: inline-block;
font-size: var(--font-size-base);
}
.price.small .symbol {
font-size: var(--font-size-small);
}
.price.mini {
display: inline-block;
font-size: var(--font-size-small);
}
.price.mini .symbol {
font-size: var(--font-size-mini);
}
.price .badge {
vertical-align: middle;
margin-left: calc(var(--spacer) / 6);
background: var(--color-secondary);
}