From b8e43bcf645049cc4c300a410edd5580d7385c68 Mon Sep 17 00:00:00 2001 From: j285he Date: Sat, 18 Jun 2022 23:08:14 -0400 Subject: [PATCH] Change sans-serif fallback to monospace (#20) Since inconsolata is a monospace font, I think we should change the fallback to be monospace as well (it also matches the aesthetic of the design more closely). What do you all think? Co-authored-by: Jared He <66887902+jaredjhe@users.noreply.github.com> Reviewed-on: https://git.csclub.uwaterloo.ca/www/cs-2022-class-profile/pulls/20 Reviewed-by: Amy --- pages/_app.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/_app.css b/pages/_app.css index 4a17bd4..92ef010 100644 --- a/pages/_app.css +++ b/pages/_app.css @@ -64,7 +64,7 @@ body { background-color: var(--primary-background); color: var(--primary-text); - font-family: "Inconsolata", "sans-serif"; + font-family: "Inconsolata", "monospace"; margin: 0; }