From 69f0c10a5ea4a6c676d37df1e672bec55122fec9 Mon Sep 17 00:00:00 2001 From: Sahil Kashetwar Date: Sat, 2 Nov 2024 04:19:37 +0530 Subject: [PATCH] fix card height in case of single card --- src/components/cardList/styles.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/cardList/styles.ts b/src/components/cardList/styles.ts index c82320b0..d1275f0f 100644 --- a/src/components/cardList/styles.ts +++ b/src/components/cardList/styles.ts @@ -46,6 +46,7 @@ export const Card = styled.div` width: 100%; max-width: 250px; min-width: 250px; + height: 220px; border: 1px solid ${({ theme: { colors, name } }) => name === 'light' ? colors.gray[400] : colors.gray[300]};