commit 4313e6fdfe762988b738f7e6a472c251bb2cbea3 (patch)
parent d9870ac8da73fb9b2556d781dfb140099c4f2974
Author: Alex Karle <alex@alexkarle.com>
Date: Tue, 15 Nov 2022 00:39:35 -0500
rsvp: Increase textarea and input font sizes
Diffstat:
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git 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
@@ -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 <p> tags? */
+ font-size: .9em;
+}
+
+textarea {
+ font-size: 1.2em;
+}