From 66f61f0049d8ac056c916bace794d05c073f5707 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Thu, 14 May 2020 11:12:04 -0700 Subject: Scale appropriately for phone --- z.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'z.scm') diff --git a/z.scm b/z.scm index 8d86472..745cf4c 100644 --- a/z.scm +++ b/z.scm @@ -206,7 +206,10 @@ NL < '\n' names paths))))))) (define (template title body) - `(html (head (title ,title)) + `(html (head + (title ,title) + (meta (@ (name "viewport") + (content "width=device-width, initial-scale=1")))) (style ,*css*) (body (h1 "z") -- cgit v1.2.3