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