Skip to content

Commit

Permalink
fix: #1133: All the carts should be of same height (#1136)
Browse files Browse the repository at this point in the history
  • Loading branch information
subhamkumarr authored Feb 14, 2024
1 parent 44045eb commit a3d7129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export type CardItem = {
export default function Card({ title, link, description }: CardItem) {
return (
<div className="col col--4 margin-top--sm margin-bottom--md">
<Link className={clsx(styles.root, "card padding--sm")} href={link}>
<Link className={clsx(styles.root, "card")} href={link}>
<div className="card__header"><h3>{title}</h3></div>
<div className="card__body">{description}</div>
</Link>
Expand Down

0 comments on commit a3d7129

Please sign in to comment.