diff --git a/src/components/EntryListing.js b/src/components/EntryListing.js index 7ca45393..91239dc3 100644 --- a/src/components/EntryListing.js +++ b/src/components/EntryListing.js @@ -17,9 +17,8 @@ export default class EntryListing extends React.Component { { mq: '495px', columns: 2, gutter: 15 }, { mq: '750px', columns: 3, gutter: 15 }, { mq: '1005px', columns: 4, gutter: 15 }, - { mq: '1260px', columns: 5, gutter: 15 }, - { mq: '1515px', columns: 6, gutter: 15 }, - { mq: '1770px', columns: 7, gutter: 15 }, + { mq: '1515px', columns: 5, gutter: 15 }, + { mq: '1770px', columns: 6, gutter: 15 }, ] }; diff --git a/src/components/UnpublishedListing.css b/src/components/UnpublishedListing.css index ebd7bcd6..8f70b85f 100644 --- a/src/components/UnpublishedListing.css +++ b/src/components/UnpublishedListing.css @@ -24,25 +24,26 @@ .card { width: 100% !important; - margin: 7px 0; + margin: 7px 0 0 10px; + padding: 7px 0; +} - & h2 { - font-size: 17px; - & small { - font-weight: normal; - } +.cardHeading { + font-size: 17px; + & small { + font-weight: normal; } +} - & p { - color: #555; - font-size: 12px; - margin-top: 5px; - } +.cardText { + color: #555; + font-size: 12px; + margin-top: 5px; +} - & button { - margin: 10px 10px 0 0; - float: right; - } +.button { + margin: 10px 10px 0 0; + float: right; } diff --git a/src/components/UnpublishedListing.js b/src/components/UnpublishedListing.js index f58a3a6b..3da8ac52 100644 --- a/src/components/UnpublishedListing.js +++ b/src/components/UnpublishedListing.js @@ -53,10 +53,10 @@ class UnpublishedListing extends React.Component {
-

{entry.getIn(['data', 'title'])} by {author}

-

Last updated: {timeStamp} by {entry.getIn(['metaData', 'user'])}

+ {entry.getIn(['data', 'title'])} by {author} +

Last updated: {timeStamp} by {entry.getIn(['metaData', 'user'])}

{(ownStatus === status.last()) && - + }
diff --git a/src/containers/App.css b/src/containers/App.css index 8e02b0cd..7c0c10f0 100644 --- a/src/containers/App.css +++ b/src/containers/App.css @@ -4,7 +4,17 @@ .nav { display: block; padding: 1rem; + & .heading { + border: none; + } } .main { padding-top: 54px; } + +.navDrawer { + max-width: 240px !important; + & .drawerContent { + max-width: 240px !important; + } +} diff --git a/src/containers/App.js b/src/containers/App.js index 053f11d2..7246dc8f 100644 --- a/src/containers/App.js +++ b/src/containers/App.js @@ -20,7 +20,7 @@ import styles from './App.css'; class App extends React.Component { state = { - navDrawerIsVisible: false + navDrawerIsVisible: true }; componentDidMount() { @@ -137,10 +137,11 @@ class App extends React.Component {