Skip to content

Commit

Permalink
Remove max-height
Browse files Browse the repository at this point in the history
  • Loading branch information
CannonLock committed Apr 22, 2024
1 parent ae3a31b commit d07e1d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export default function Home() {

<Container maxWidth={"xl"}>
<Divider sx={{margin: 6}}/>
<Grid container spacing={2} maxHeight={"500px"}>
<Grid container spacing={2}>
<Grid item xs={12} sm={6} md={6} lg={4} xl={4} sx={{ display: { xs: "none", lg: "block" } }}>
<Typography variant={"h4"} sx={{paddingBottom: "1.5rem", textAlign:"center"}}>
<Link href={"/user-stories"} underline="hover" color="inherit">User Stories</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Article.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const ArticleCard = ({href, article} : CardProps) => {
<Box pl={2} p={2}>
<Box py={1} pt={1}>
<TopStyledBlock height={".25rem"} width={"5rem"} offset={"-.75rem"}>
<Typography variant={"h6"}><Balancer>{article.title}</Balancer></Typography>
<Typography variant={"h6"} sx={{fontWeight: "bold"}}><Balancer>{article.title}</Balancer></Typography>
</TopStyledBlock>
</Box>
<Typography variant={"body1"}>{article.excerpt}</Typography>
Expand Down

0 comments on commit d07e1d9

Please sign in to comment.