From 45247dfa3f023b2247da59a43e357d755709b77f Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Mon, 29 Jul 2019 22:31:11 +0200 Subject: [PATCH] Wrap in section tag --- frontend/src/Main.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/Main.elm b/frontend/src/Main.elm index 7d11c7c..6d5c2ed 100644 --- a/frontend/src/Main.elm +++ b/frontend/src/Main.elm @@ -2,7 +2,7 @@ module Main exposing (Model, Msg(..), init, main, update, view) import Browser import Data exposing (Url, hostname, repository, servicename, toUrl) -import Html exposing (Html, a, article, div, h1, input, li, nav, small, text, ul) +import Html exposing (Html, a, article, h1, input, li, nav, section, small, text, ul) import Html.Attributes exposing (disabled, href, placeholder, style, value) import Html.Events exposing (onInput) import Parse exposing (parseUrl) @@ -52,7 +52,7 @@ myStyle2 = view : Model -> Html Msg view state = - div myStyle + section myStyle [ header , body state , footer