Skip to content

Commit

Permalink
Fix contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
255kb committed Oct 19, 2023
1 parent 6dc3167 commit c2eb38b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const Card: FunctionComponent<{
<div
className={`${
props.vertical || !props.data.imageSrc ? '' : 'w-100 w-lg-50'
} card-body flex-grow-1 text-gray-700 d-flex flex-column align-items-center py-5`}
} card-body flex-grow-1 d-flex flex-column align-items-center py-5`}
>
{props.data.topTag && (
<span
Expand All @@ -66,7 +66,7 @@ const Card: FunctionComponent<{

{props.data.description && (
<p
className='col-10 text-muted'
className='col-10 text-gray-700'
dangerouslySetInnerHTML={{ __html: props.data.description }}
></p>
)}
Expand Down

0 comments on commit c2eb38b

Please sign in to comment.