Skip to content

Commit

Permalink
[fix] make card height 100%
Browse files Browse the repository at this point in the history
  • Loading branch information
Fbasham committed Sep 26, 2023
1 parent 341684d commit cbf8f34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/molecules/Card.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const Card = (props) => {
return (
<Link href={props.href}>
<div
className={`group card-shadow border border-custom-gray-border rounded-md pb-4 hover:cursor-pointer ${
className={`h-full group card-shadow border border-custom-gray-border rounded-md pb-4 hover:cursor-pointer ${
"border-" + tagColour
}`}
data-testid={props.dataTestId}
Expand Down
2 changes: 1 addition & 1 deletion pages/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ export default function Home(props) {
}
/>
</div>
<ul className="grid lg:grid-cols-2 gap-x-4 gap-y-4 list-none ml-0">
<ul className="grid lg:grid-cols-2 gap-4 list-none ml-0">
{displayCurrentProjects}
</ul>
</section>
Expand Down

0 comments on commit cbf8f34

Please sign in to comment.