1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-21 13:47:39 +02:00

Remove margin right for cleanup box (#10112)

It was misaligned with the rest of the content with this margin. The
original author doesn't remember why it was there, so it's probably safe
to remove.

Before:

![image](https://github.com/user-attachments/assets/444a46c0-1f95-48c0-97a2-b3077a49dfb3)

After:

![image](https://github.com/user-attachments/assets/9d0f085d-437d-46bb-a167-4f9019589c8c)
This commit is contained in:
Thomas Heartman 2025-06-11 11:26:15 +02:00 committed by GitHub
parent f299c2b652
commit d2233bc71d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,6 @@ import { usePlausibleTracker } from 'hooks/usePlausibleTracker';
import { useUncomplete } from '../FeatureOverview/FeatureLifecycle/useUncomplete.ts';
const StyledBox = styled(Box)(({ theme }) => ({
marginRight: theme.spacing(2),
marginBottom: theme.spacing(2),
}));