From d8f52701287b19af0f36041304a5ea635bf2284e Mon Sep 17 00:00:00 2001 From: Nicolas Perriault Date: Sat, 22 Apr 2017 16:43:45 +0200 Subject: [PATCH] Remove main page heading. --- public/style.css | 1 + src/View.elm | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/style.css b/public/style.css index ceeacfd..b59664a 100644 --- a/public/style.css +++ b/public/style.css @@ -1,5 +1,6 @@ body { font-family: Roboto, sans-serif; + padding-top: 10px; } .status { diff --git a/src/View.elm b/src/View.elm index a19e74d..b9ee22f 100644 --- a/src/View.elm +++ b/src/View.elm @@ -471,8 +471,7 @@ authView model = view : Model -> Html Msg view model = div [ class "container-fluid" ] - [ h1 [] [ text "tooty" ] - , errorsListView model + [ errorsListView model , case model.client of Just client -> homepageView model