From 1e59262ba78ecb4dd96fdf0e4e8384524722a0ee Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Thu, 3 Oct 2024 10:50:47 +0200 Subject: [PATCH] fix: make gaps 1px instead of 2px --- frontend/src/component/personalDashboard/Grid.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/component/personalDashboard/Grid.tsx b/frontend/src/component/personalDashboard/Grid.tsx index e50b6070b463..3173af1bf7ef 100644 --- a/frontend/src/component/personalDashboard/Grid.tsx +++ b/frontend/src/component/personalDashboard/Grid.tsx @@ -11,7 +11,7 @@ const ContentGrid = styled('article')(({ theme }) => { borderRadius: `${theme.shape.borderRadiusLarge}px`, overflow: 'hidden', border: `0.5px solid ${theme.palette.divider}`, - gap: `2px`, + gap: `1px`, display: 'flex', flexFlow: 'column nowrap',