Skip to content

Commit

Permalink
Merge pull request #82 from hack4impact-upenn/style-sessions-page
Browse files Browse the repository at this point in the history
make admin sessions page look better
  • Loading branch information
zhouhelena authored Dec 10, 2023
2 parents 31f1f67 + bebb199 commit 067a873
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions client/src/Admin/AdminSessionsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,16 @@ function AdminSessionsPage() {
</Typography>
{blockDict[day][slot].map((block: IBlock) => (
/* eslint no-underscore-dangle: 0 */
<Link href={`/admin/block/${block._id}`}>
<Typography variant="subtitle1">
{block.name}
</Typography>
</Link>
<Button
sx={{
textTransform: 'none',
color: theme.palette.text.primary,
}}
LinkComponent={Link}
href={`/admin/block/${block._id}`}
>
{block.name}
</Button>
))}
</Box>
))}
Expand Down

0 comments on commit 067a873

Please sign in to comment.