Skip to content

Commit

Permalink
tidy contact section styling
Browse files Browse the repository at this point in the history
relates #10
  • Loading branch information
jessicasalmon committed Feb 19, 2018
1 parent c38935d commit 4486827
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/components/Contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class Contact extends Component {
console.log(this.state.emailError, 'error')
console.log(this.state.isSubmitted, 'isSubmitted')
return (
<section className="ph4 ph6-m ph7-l pt6 pb5 bg-dark-pink vh-100">
<section className="ph4 ph6-m ph7-l pv5 bg-dark-pink vh-100">
<h2 className="underline underline-yellow white tc">Get in Touch</h2>

{ !this.state.isSubmitted &&
Expand Down
2 changes: 1 addition & 1 deletion app/src/components/Input.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const Input = ({ inputType, label, name, value, handleInput, placeholder, width
const inputStyle = "bb outline-0 bw1 br-0 bl-0 bt-0 b--yellow bg-dark-pink white pv2"
return (
<div className={`flex flex-column white mb4 ${width}`}>
<label htmlFor={label} className="f7 mb2"> { label } </label>
<label htmlFor={label} className="f7 mb2 b"> { label } </label>
{ inputType === 'input' ?
<input
className={ `${inputStyle}`}
Expand Down

0 comments on commit 4486827

Please sign in to comment.