Skip to content

Commit

Permalink
Fix landing page positioning
Browse files Browse the repository at this point in the history
  • Loading branch information
archcorsair committed Oct 31, 2016
1 parent 3e3cd64 commit cd4249a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client/src/app/Landing.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ const Landing = (props) => {
const tooltip = (
<Tooltip id="tooltip"><strong>Start a new Drawmie!</strong></Tooltip>
);
{/* this is an instance of a react-boostrap Grid component */}

// Bootstrap Grid Component
const gridInstance = (
<Grid>
<Row className="show-grid">
<Col xs={6} md={4}></Col>
<Col xs={6} md={4}>
<Col xs={6} md={4} className='mid-grid'>
<div className='drawmie-title'>
<center>
<h1 className="headers">Drawmie</h1>
Expand Down
4 changes: 4 additions & 0 deletions client/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ a{
color: #681f03;
}

.mid-grid {
margin-top: 20%;
}

.headers {
color:white;
}
Expand Down

0 comments on commit cd4249a

Please sign in to comment.