From 979583e0c9293fd0d767b21e7a244d0bc897cae0 Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Thu, 15 Oct 2015 21:10:06 -0700 Subject: [PATCH] Add styling to jobs list --- common/app/routes/Jobs/components/Jobs.jsx | 52 +++++++++++++--------- 1 file changed, 32 insertions(+), 20 deletions(-) diff --git a/common/app/routes/Jobs/components/Jobs.jsx b/common/app/routes/Jobs/components/Jobs.jsx index ab5834c706..fec91fc342 100644 --- a/common/app/routes/Jobs/components/Jobs.jsx +++ b/common/app/routes/Jobs/components/Jobs.jsx @@ -1,7 +1,7 @@ import React, { cloneElement, PropTypes } from 'react'; import { contain } from 'thundercats-react'; import { History } from 'react-router'; -import { Button, Panel, Row } from 'react-bootstrap'; +import { Button, Panel, Row, Col } from 'react-bootstrap'; import CreateJobModal from './CreateJobModal.jsx'; import ListJobs from './List.jsx'; @@ -61,27 +61,39 @@ export default contain( return ( -

Free Code Camps' Job Board

-

- Need to find the best junior developers? - Want to find dedicated developers eager to join your company? - Sign up now to post your job! -

- + +

Free Code Camps' Job Board

+ + +

+ Need to find the best junior developers? + Post your job today! +

+ +
+ + + + { this.renderChild(children, jobs) || + this.renderList(this.handleJobClick, jobs) } + + + - - { this.renderChild(children, jobs) || - this.renderList(this.handleJobClick, jobs) } - - ); }