From ab492792971ccefaea95908deef4bc9d207f730e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Fri, 27 Dec 2019 23:25:53 +0100 Subject: Minor fixups. --- module/output/html.scm | 6 +++--- static/style.css | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/module/output/html.scm b/module/output/html.scm index 3b5ed38c..242ee714 100644 --- a/module/output/html.scm +++ b/module/output/html.scm @@ -142,11 +142,11 @@ `(span (@ (id ,str) (class "daydate")) ,str)) (span (@ (class "dayname")) ,(date->string date "~a"))) (div (@ (class "wholeday")) - " " ; To prevent self closing div tag + "" ; To prevent self closing div tag ,@(map (lambda (e) (vevent->sxml-top date e)) long-events)) (div (@ (class "events")) - " " ; To prevent self closing div tag + "" ; To prevent self closing div tag ,@(map (lambda (time) `(div (@ (class "clock clock-" ,time)) "")) (iota 12 0 2)) @@ -306,7 +306,7 @@ (head (title "Calendar") (meta (@ (charset "utf-8"))) - (meta (@ (http-equiv "Content-Type")) "application/xhtml+xml") + (meta (@ (http-equiv "Content-Type") (content "application/xhtml+xml"))) (meta (@ (name viewport) (content "width=device-width, initial-scale=0.5"))) (meta (@ (name description) diff --git a/static/style.css b/static/style.css index c34470ed..e418df38 100644 --- a/static/style.css +++ b/static/style.css @@ -206,7 +206,7 @@ body { height: 99%; width: 100%; - min-width: 300px; + min-width: 200px; margin-left: 0.5em; border: 1px solid black; -- cgit v1.2.3