Skip to content

Commit

Permalink
reduce boldness of card text
Browse files Browse the repository at this point in the history
relates #10
  • Loading branch information
jessicasalmon committed Feb 19, 2018
1 parent 3ab2e05 commit a2e661f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/components/Card.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ const Card = ({ width, image, client, blurb, link }) => {
// whole card clicks through to case study
return (
<div className={`${width} tl mb4 mb0-l`}>
<Link className="b link pointer color-inherit" to={ `/case-study/${link}` } >
<Link className="link pointer color-inherit" to={ `/case-study/${link}` } >
<img alt="" src={ image } className="w-100" />
<div className="ph1">
<h3 className="b f4 h3 ma0 flex items-center">{ client }</h3>
<p>{ blurb }</p>
</div>
<p className="underline"> Read More </p> </Link>
<p className="underline b"> Read More </p> </Link>
</div>
)
}
Expand Down

0 comments on commit a2e661f

Please sign in to comment.