ui: offers responsive ui

ui: offers avoid squishing tiles
This commit is contained in:
nahuhh
2025-01-18 09:58:06 +00:00
parent 5daf591985
commit edc11b4c96
2 changed files with 24 additions and 23 deletions

View File

@@ -332,7 +332,7 @@ displayCoinData: (coin, data) => {
if (coin === 'BTC') {
btcPriceDiv.style.display = 'none';
} else {
priceBtcElement.textContent = isError ? 'N/A' : `${priceBTC.toFixed(8)} BTC`;
priceBtcElement.textContent = isError ? 'N/A' : `${priceBTC.toFixed(8)}`;
btcPriceDiv.style.display = 'flex';
}
}
@@ -460,7 +460,7 @@ displayCoinData: (coin, data) => {
if (price < 0.001) return price.toFixed(8);
if (price < 1) return price.toFixed(4);
if (price < 1000) return price.toFixed(2);
return price.toFixed(1);
return price.toFixed(0);
},
setActiveContainer: (containerId) => {