Skip to content

Commit

Permalink
hide intro placeholder text
Browse files Browse the repository at this point in the history
relates #10
  • Loading branch information
jessicasalmon committed Feb 19, 2018
1 parent 4486827 commit 0704ff3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion app/src/components/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const About = () => {

<p className="dark-pink f7 mt0">*<span className="i">disclaimer</span>: there&#x27;s more to it than code.</p>

<p className="mw7-ns pt3 mid-gray near-black fw6">
<p className="mw7-ns pt3 mid-gray near-black fw6 dn">
Donec sed odio dui. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec id elit non mi porta gravida at eget metus. Maecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo.
</p>

Expand Down
7 changes: 4 additions & 3 deletions app/src/components/Card.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ import { Link } from 'react-router-dom';
const Card = ({ width, image, client, blurb, link }) => {
// whole card clicks through to case study
return (
<div className={`${width} tl mb4 mb0-l `}>
<div className={`${width} tl mb4 mb0-l`}>
<Link className="b 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>
<Link className="b link pointer underline color-inherit" to={ `/case-study/${link}` } ><p> Read More </p> </Link>
</div>
</div>
<p className="underline"> Read More </p> </Link>
</div>
)
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/components/Clients.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const Clients = () => {
return (
<section className="ph4 ph6-l pv4 tc bg-near-white">
<h2 className="mt0 underline underline-yellow dark-pink">You&#x27;re in good company</h2>
<div className="flex justify-between flex-wrap">
<div className="flex justify-between flex-wrap mt4">
<div className="w-50 w-25-ns tc flex items-center justify-center ph1 mv2">
<img alt="Berkeley Homes" className="h2 h2p5-ns" src={berkeley} />
</div>
Expand Down

0 comments on commit 0704ff3

Please sign in to comment.