1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00
market/src/components/Profile/Header/Stats.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

28 lines
598 B
CSS

.stats {
display: grid;
gap: var(--spacer);
grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
margin-top: var(--spacer);
}
.stats [class^='PriceUnit_symbol'] {
color: var(--color-secondary);
font-weight: var(--font-weight-base);
font-size: var(--font-size-small);
}
.stats .link,
.stats .link:hover {
color: var(--color-primary);
font-size: var(--font-size-small);
text-decoration: none;
padding: 0;
border: 0;
}
.stats [class^='PriceUnit_price'] {
color: var(--color-secondary);
font-weight: var(--font-weight-base);
font-size: var(--font-size-small);
}