Skip to content

Commit

Permalink
fix(monthly_view): change layout for person selector
Browse files Browse the repository at this point in the history
  • Loading branch information
FussuChalice committed Jan 12, 2025
1 parent 092162f commit 9decacf
Show file tree
Hide file tree
Showing 4 changed files with 169 additions and 94 deletions.
9 changes: 8 additions & 1 deletion src/features/meetings/monthly_view/index.styled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Box, styled } from '@mui/material';

export const StyledMonthlyViewRow = styled(Box)({
flexDirection: 'row',
alignItems: 'center',
alignItems: 'stretch',
display: 'flex',
gap: '16px',
});
Expand All @@ -11,4 +11,11 @@ export const StyledMonthlyViewColumn = styled(Box)({
display: 'flex',
flexDirection: 'column',
gap: '12px',
justifyContent: 'space-between',
height: '100%',
});

export const StyledMonthlyViewTitleBox = styled(Box)({
display: 'flex',
alignItems: 'center',
});
Loading

0 comments on commit 9decacf

Please sign in to comment.