aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--module/output/html.scm6
-rw-r--r--static/style.css2
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;