diff --git a/client/less/main.less b/client/less/main.less
index 35b5491ae2..4a86571c99 100644
--- a/client/less/main.less
+++ b/client/less/main.less
@@ -9,6 +9,10 @@ html,body,div,span,a,li,td,th {
font-weight: 300;
}
+bold {
+ font-weight: 500;
+}
+
li, .wrappable {
white-space: pre; /* CSS 2.0 */
white-space: pre-wrap; /* CSS 2.1 */
diff --git a/common/app/routes/Jobs/components/List.jsx b/common/app/routes/Jobs/components/List.jsx
index 49d471f097..300630684b 100644
--- a/common/app/routes/Jobs/components/List.jsx
+++ b/common/app/routes/Jobs/components/List.jsx
@@ -48,7 +48,7 @@ export default React.createClass({
onClick={ () => handleClick(id) }>
- { company }
+ { company }
{' '}
- { position }
diff --git a/common/app/routes/Jobs/components/ShowJob.jsx b/common/app/routes/Jobs/components/ShowJob.jsx
index b1d8faad5a..497b06a5f5 100644
--- a/common/app/routes/Jobs/components/ShowJob.jsx
+++ b/common/app/routes/Jobs/components/ShowJob.jsx
@@ -1,6 +1,5 @@
import React, { PropTypes } from 'react';
import { Row, Col, Thumbnail, Panel } from 'react-bootstrap';
-import moment from 'moment';
const defaultImage =
'https://pbs.twimg.com/' +
@@ -43,7 +42,6 @@ export default React.createClass({
locale,
email,
phone,
- postedOn,
description
} = job;
@@ -63,8 +61,8 @@ export default React.createClass({
+ md={ 2 }
+ mdOffset={ 3 }>
- Position: { position || 'N/A' }
+ Position: { position || 'N/A' }
- Location: { locale ? locale : `${city}, ${state}` }
-
- Contact: { email || phone || 'N/A' }
-
- Posted On: { moment(postedOn).format('MMMM Do, YYYY') }
+ Location:
+ { locale ? locale : `${city}, ${state}` }
@@ -91,6 +86,13 @@ export default React.createClass({
{ description }
+
+
+ Contact: { email || phone }
+
+