From f9f31da0ea0314e347ddbac33a96aaf6ff71af62 Mon Sep 17 00:00:00 2001 From: Dimitar Danailov Date: Tue, 4 Jun 2024 10:40:31 +0300 Subject: [PATCH] CoinCell is mobile friendly --- apps/website/src/styled-components/Coingecko/Table/Cell.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/website/src/styled-components/Coingecko/Table/Cell.ts b/apps/website/src/styled-components/Coingecko/Table/Cell.ts index e1637de..7854e18 100644 --- a/apps/website/src/styled-components/Coingecko/Table/Cell.ts +++ b/apps/website/src/styled-components/Coingecko/Table/Cell.ts @@ -28,6 +28,10 @@ export const CoinCell = styled(Cell)` flex-direction: row; align-items: center; min-width: 120px; + + @media (max-width: 1024px) { + min-width: 50px; + } ` export const PriceUSDCell = styled(Cell)`