1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-26 13:48:33 +02:00

fix: event styling personal dashboard (#8337)

This commit is contained in:
Mateusz Kwasniewski 2024-10-02 14:24:50 +02:00 committed by GitHub
parent b975919395
commit e0ea1ff34a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 4 deletions

View File

@ -10,10 +10,11 @@ const Events = styled('ul')(({ theme }) => ({
}));
const Event = styled('li')(({ theme }) => ({
display: 'flex',
gap: theme.spacing(2),
listStyleType: 'none',
padding: 0,
padding: theme.spacing(0),
display: 'inline-flex',
gap: theme.spacing(2),
alignItems: 'center',
marginBottom: theme.spacing(4),
}));

View File

@ -152,7 +152,7 @@ export const MyProjects: FC<{
<ExistingFlag project={activeProject} />
) : null}
</SpacedGridItem>
<SpacedGridItem item lg={4} md={1}>
<SpacedGridItem item lg={4} md={1} sx={{ pr: 4 }}>
{activeProjectStage === 'onboarded' &&
personalDashboardProjectDetails ? (
<LatestProjectEvents