From f4b44c56611e8182aa28a7eb63d9c03282dfe674 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A1ssio=20Zen?= Date: Wed, 13 Jul 2016 17:20:41 -0300 Subject: [PATCH] layout adjustments --- src/components/EntryListing.js | 2 +- src/containers/CollectionPage.js | 5 +---- src/containers/FindBar.css | 1 + src/index.css | 5 ----- 4 files changed, 3 insertions(+), 10 deletions(-) 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; -}