Skip to content

Commit

Permalink
Refactor InfoBoxItem component to use the existing border class
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamik10 committed Dec 16, 2024
1 parent ba4f732 commit 99c41ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/shared/infoBox/InfoBoxItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const InfoBoxItem = ({ term, description, isButtons = false }: InfoBoxItemProps)

return (
<>
<hr className="border-foreground opacity-15 not-first:mt-7" />
<hr className="border-border not-first:mt-7" />
<dt className="mt-2 text-typo-caption">{term}</dt>
{!isButtons && <dd className="mt-6 text-typo-heading-5">{description.join(", ")}</dd>}
{isButtons && (
Expand Down

0 comments on commit 99c41ab

Please sign in to comment.