Skip to content

Commit

Permalink
Merge pull request #161 from rsksmart/hotfix
Browse files Browse the repository at this point in the history
Fix accessibility touch target size in Card component
  • Loading branch information
owans authored Nov 26, 2024
2 parents b059a9a + 6b41c47 commit e77fe01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Card/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function Card({index, title, description, list, color = "orange",
<ul className={`mb-0 mt-auto`}>
{list.map((item, idx) => (
<li key={idx}>
<Link href={item.href} target={item.target} className={`fw-bold`}>
<Link href={item.href} target={item.target} className={`fw-bold py-4`}>
{item.title}
</Link>
</li>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Card/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
}
}
li + li {
margin-top: 4px;
margin-top: 8px;
}
}

0 comments on commit e77fe01

Please sign in to comment.