Skip to content

Commit

Permalink
fix: event styling personal dashboard (#8337)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew authored Oct 2, 2024
1 parent b975919 commit e0ea1ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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),
}));

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/component/personalDashboard/MyProjects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e0ea1ff

Please sign in to comment.