Skip to content

Commit

Permalink
Fix console font family
Browse files Browse the repository at this point in the history
Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
  • Loading branch information
yjf2002ghty committed Dec 15, 2024
1 parent 7e20d94 commit a54e2e1
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/html/advanced.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
<!-- CSS -->

<style>
:root {
--console-font: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas,
Liberation Mono, monospace;
}

*,
*::before,
*::after {
Expand Down Expand Up @@ -1579,11 +1584,11 @@
}

#fsfoutput {
font-family: Consolas;
font-family: var(--console-font);
}

#whiteengineoutput {
font-family: Consolas;
font-family: var(--console-font);
}

#whiteunsupportedvariant {
Expand All @@ -1592,7 +1597,7 @@
}

#blackengineoutput {
font-family: Consolas;
font-family: var(--console-font);
}

#blackunsupportedvariant {
Expand All @@ -1601,7 +1606,7 @@
}

#analysisengineoutput {
font-family: Consolas;
font-family: var(--console-font);
}

#analysisunsupportedvariant {
Expand Down

0 comments on commit a54e2e1

Please sign in to comment.