Skip to content

Commit

Permalink
fix: font declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
machikoyasuda committed Jul 27, 2023
1 parent cd7a0ab commit 68bb9fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions styles/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
--grey: #EDEDED;
--white: #FFFFFF;
--bs-font-sans-serif: "Roboto, system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"";
--bs-font-monospace: "'Source Code Pro Bold', SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace";
--bs-font-monospace: "Source Code Pro Bold",monospace;
}

* {
Expand Down Expand Up @@ -92,11 +92,11 @@ h3,
.h3,
h4,
.h4 {
font-family: 'Source Code Pro Bold', 'Courier New', Courier, monospace;
font-family: var(--bs-font-monospace);
}

.sans-serif {
font-family: 'Roboto', Arial, Helvetica, sans-serif;
font-family: var(--bs-font-sans-serif);
}

/*#endregion */
Expand Down

0 comments on commit 68bb9fb

Please sign in to comment.