diff --git a/src/View.hs b/src/View.hs index 801bbe0..5b5729a 100644 --- a/src/View.hs +++ b/src/View.hs @@ -58,6 +58,7 @@ renderMenu :: Menu -> Html () renderMenu (Menu lunch spec) = li_ (do h3_ (toHtml lunch) + span_ [class_ "invisible-space"] " " toHtml spec ) diff --git a/static/style.css b/static/style.css index 0c1c39a..945e45b 100644 --- a/static/style.css +++ b/static/style.css @@ -37,6 +37,10 @@ h3 { font-weight: bold; color: #bd3613; } +.invisible-space { + width: 0px; + font-size: 0px; +} p { font-size: 10vh; }