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:
parent
b975919395
commit
e0ea1ff34a
@ -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),
|
||||
}));
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user