asi-calculator/features/prices/components/MarketData/MarketData.module.css
Matthias Kretschmann dd44cc864e
market data refactor, add 24h price change (#8)
* new prices data structure

* market data refactor, add 24h price change

* browser language detection with middleware

* middleware tweaks
2024-04-09 13:46:15 +01:00

18 lines
504 B
CSS

.marketData {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
justify-content: center;
border-top: 1px solid rgba(var(--foreground-rgb), 0.2);
border-left: 1px solid rgba(var(--foreground-rgb), 0.2);
border-bottom: none;
border-radius: var(--border-radius);
margin-top: 1.5rem;
}
.marketData li {
border-bottom: 1px solid rgba(var(--foreground-rgb), 0.2);
border-right: 1px solid rgba(var(--foreground-rgb), 0.2);
padding: 1rem;
font-size: 0.9rem;
}