diff --git a/src/components/EntryListing.js b/src/components/EntryListing.js index 41908a22..0a08f48a 100644 --- a/src/components/EntryListing.js +++ b/src/components/EntryListing.js @@ -68,7 +68,7 @@ export default class EntryListing extends React.Component { const name = collection.get('name'); return
-

Listing {name}

+

Listing {name}

this._entries = c}> {entries.map((entry) => { const path = `/collections/${name}/entries/${entry.get('slug')}`; diff --git a/src/containers/CollectionPage.js b/src/containers/CollectionPage.js index d7e43ea9..bc119da5 100644 --- a/src/containers/CollectionPage.js +++ b/src/containers/CollectionPage.js @@ -29,10 +29,7 @@ class DashboardPage extends React.Component { } return
-

Dashboard

-
- {entries ? : 'Loading entries...'} -
+ {entries ? : 'Loading entries...'}
; } } diff --git a/src/containers/FindBar.css b/src/containers/FindBar.css index e19a35da..c520bfbb 100644 --- a/src/containers/FindBar.css +++ b/src/containers/FindBar.css @@ -10,6 +10,7 @@ position: relative; background-color: var(--backgroundColor); padding: 1px 0; + margin-bottom: 50px; } .inputArea { diff --git a/src/index.css b/src/index.css index ee57887e..d1c6f90d 100644 --- a/src/index.css +++ b/src/index.css @@ -15,8 +15,3 @@ body { :global #root, :global #root > * { height: 100%; } - -h1, h2, h3, h4, h5, h6, p, blockquote, figure, dl, ol, ul { - margin: 0; - padding: 0; -}