From 933833d331e79bf1bf5e61a5ffde6479f96fed9e Mon Sep 17 00:00:00 2001 From: Amy Date: Wed, 27 Jul 2022 20:45:10 -0400 Subject: [PATCH] Fix monospace fallback (#28) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Just realized that we shouldn't have quotes around `monospace` 🤦 Co-authored-by: Amy Wang Reviewed-on: https://git.csclub.uwaterloo.ca/www/cs-2022-class-profile/pulls/28 Reviewed-by: j285he --- components/BarGraph.module.css | 6 +++--- pages/_app.css | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/BarGraph.module.css b/components/BarGraph.module.css index 025976a..7ccdc8b 100644 --- a/components/BarGraph.module.css +++ b/components/BarGraph.module.css @@ -9,7 +9,7 @@ .barText { visibility: hidden; - font-family: "Inconsolata", "monospace"; + font-family: "Inconsolata", monospace; font-weight: 800; fill: var(--label); } @@ -24,13 +24,13 @@ } .tickLabel { - font-family: "Inconsolata", "monospace"; + font-family: "Inconsolata", monospace; font-weight: 800; fill: var(--label); } .axisLabel { - font-family: "Inconsolata", "monospace"; + font-family: "Inconsolata", monospace; font-weight: 800; fill: var(--label); } diff --git a/pages/_app.css b/pages/_app.css index 92ef010..1aa8093 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", "monospace"; + font-family: "Inconsolata", monospace; margin: 0; }