From 38b33aa032c9479f5064e376a1c207a4b1fcbffc Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Thu, 3 Oct 2024 10:53:22 +0200 Subject: [PATCH] fix: make gaps 1px instead of 2px (#8351) This PR reduces the gaps/borders between items in the dashboard grids to 1px. --- 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 e50b6070b4..3173af1bf7 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',