Fix monospace fallback (#28)
continuous-integration/drone/push Build is passing Details

Just realized that we shouldn't have quotes around `monospace` 🤦

Co-authored-by: Amy Wang <a258wang@csclub.uwaterloo.ca>
Reviewed-on: #28
Reviewed-by: j285he <j285he@localhost>
This commit is contained in:
Amy Wang 2022-07-27 20:45:10 -04:00
parent 6735c52914
commit 933833d331
2 changed files with 4 additions and 4 deletions

View File

@ -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);
}

View File

@ -64,7 +64,7 @@ body {
background-color: var(--primary-background);
color: var(--primary-text);
font-family: "Inconsolata", "monospace";
font-family: "Inconsolata", monospace;
margin: 0;
}