Skip to content

Commit

Permalink
quick fix assigmentpage listitems height
Browse files Browse the repository at this point in the history
  • Loading branch information
friedrecursion committed May 20, 2024
1 parent 6c2829b commit 3853c53
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ export function SubmissionListItemStudentPage({

return (
<>
<ListItem key={realId} sx={{ maxHeight: '30px' }} disablePadding>
<ListItem key={realId} sx={{ maxHeight: '40px' }} disablePadding>
<ListItemButton
sx={{ maxHeight: '30px' }}
sx={{ maxHeight: '40px' }}
onClick={handleSubmissionClick}
>
<EvenlySpacedRow
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ export function SubmissionListItemTeacherPage({

return (
<>
<ListItem id={group_id} sx={{ maxHeight: '30px' }} disablePadding>
<ListItem id={group_id} sx={{ maxHeight: '40px' }} disablePadding>
<ListItemButton
sx={{ maxHeight: '30px' }}
sx={{ maxHeight: '40px' }}
onClick={handleSubmissionClick}
>
<EvenlySpacedRow
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ export function AssignmentListItemSubjectsPage({
id={projectName.replace(/\s/g, '')}
key={projectName}
disablePadding
sx={{ maxHeight: '30px' }}
sx={{ maxHeight: '40px' }}
>
<ListItemButton
sx={{ maxHeight: '30px' }}
sx={{ maxHeight: '40px' }}
onClick={handleProjectClick}
>
{isStudent ? (
Expand Down

0 comments on commit 3853c53

Please sign in to comment.