Skip to content

Commit

Permalink
in addchange subject page, divider is not suppposed to be at bottom o…
Browse files Browse the repository at this point in the history
…f list, so to be consistent with other pages
  • Loading branch information
friedrecursion committed May 20, 2024
1 parent 3853c53 commit 60eb45d
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ function UserList(
}
return (
<>
<Divider />
<ListItem>
<EvenlySpacedRow
items={[
Expand Down Expand Up @@ -126,7 +127,7 @@ function UserList(
]}
/>
</ListItem>
<Divider />

</>
)
})}
Expand Down Expand Up @@ -650,10 +651,9 @@ export function AddChangeSubjectPage() {
{t('students')}
</Typography>
</Box>
<Divider />
<Box
sx={{
marginTop: -2.5,
marginTop: -3.1,
}}
>
{UserList(
Expand Down Expand Up @@ -700,10 +700,9 @@ export function AddChangeSubjectPage() {
{t('teachers')}
</Typography>
</Box>
<Divider />
<Box
sx={{
marginTop: -2.5,
marginTop: -3.1,
}}
>
{UserList(
Expand Down

0 comments on commit 60eb45d

Please sign in to comment.