From 4313e6fdfe762988b738f7e6a472c251bb2cbea3 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Tue, 15 Nov 2022 00:39:35 -0500 Subject: [PATCH] rsvp: Increase textarea and input font sizes --- src/handler.scm | 2 +- style.css | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/handler.scm b/src/handler.scm index 9048642..3ae0d23 100644 --- a/src/handler.scm +++ b/src/handler.scm @@ -126,7 +126,7 @@ "Anything else we should know? (Allergies, kids, ...)") (textarea (@ (class "party-notes") (name ,(conc (party-id party) "__notes")) - (rows 10)) + (rows 5)) ,(let ((notes (party-notes party))) (if (sql-null? notes) "" diff --git a/style.css b/style.css index 14903e3..4bdb466 100644 --- a/style.css +++ b/style.css @@ -112,3 +112,12 @@ label.meal-choice { margin-top: 20px; margin-bottom: 16px; } + +input { + /* TODO: why is 1.25 so big here but not in

tags? */ + font-size: .9em; +} + +textarea { + font-size: 1.2em; +} -- libgit2 1.1.1