diff --git a/frontend/public/index.html b/frontend/public/index.html index 5a0b86e..513c6ba 100644 --- a/frontend/public/index.html +++ b/frontend/public/index.html @@ -61,6 +61,10 @@ justify-content: center; } /* ----------------- */ + h1 { + font-weight: normal; + font-size: 1em; + } header { display: flex; margin: auto; diff --git a/frontend/src/Main.elm b/frontend/src/Main.elm index fd02b67..ff913de 100644 --- a/frontend/src/Main.elm +++ b/frontend/src/Main.elm @@ -2,7 +2,7 @@ port module Main exposing (..) import Browser import Filesize -import Html exposing (Html, a, article, button, details, div, footer, form, header, img, input, main_, span, summary, text, time) +import Html exposing (Html, a, article, button, details, div, footer, form, h1, header, img, input, main_, span, summary, text, time) import Html.Attributes exposing (attribute, autocomplete, autofocus, class, disabled, href, id, maxlength, minlength, name, placeholder, size, src, style, type_, value) import Html.Events exposing (onClick, onInput, onSubmit, stopPropagationOn) import Json.Decode as JD @@ -525,7 +525,7 @@ viewHeader { search, state } = state == Starting in header [] - [ div [] + [ h1 [] [ text "news" , span [ class "pod" ] [ text "pod" ] ]