From cb77b106bdecf23a74c25d421496dd644c3c1d10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20G=C3=B3is?= Date: Mon, 6 Jan 2025 14:54:36 +0000 Subject: [PATCH] chore: make grid group cards have a consistent height (#9064) https://linear.app/unleash/issue/2-3114/group-cards-should-have-a-consistent-height-in-their-grid Makes the group cards height consistent in the grid. image --- frontend/src/component/admin/groups/GroupsList/GroupsList.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/component/admin/groups/GroupsList/GroupsList.tsx b/frontend/src/component/admin/groups/GroupsList/GroupsList.tsx index d15098522c..0b1d66cd0d 100644 --- a/frontend/src/component/admin/groups/GroupsList/GroupsList.tsx +++ b/frontend/src/component/admin/groups/GroupsList/GroupsList.tsx @@ -23,6 +23,7 @@ const StyledGridContainer = styled('div')(({ theme }) => ({ display: 'grid', gridTemplateColumns: 'repeat(auto-fill, minmax(280px, 1fr))', gap: theme.spacing(2), + gridAutoRows: '1fr', })); type PageQueryType = Partial>;