1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: make gaps 1px instead of 2px (#8351)

This PR reduces the gaps/borders between items in the dashboard grids to
1px.
This commit is contained in:
Thomas Heartman 2024-10-03 10:53:22 +02:00 committed by GitHub
parent 415e3489d4
commit 38b33aa032
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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',