Skip to content

Commit bb2a268

Browse files
committed
Updated font stack.
1 parent 496affd commit bb2a268

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

dist/docs/styles.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/docs/styles.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/docs/styles.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ html {
2222
}
2323

2424
body {
25-
font-family: 'Roboto Condensed', sans-serif;
25+
font-family: $font-stack-regular;
2626
font-size: $font-size;
2727
overflow-x: hidden;
2828
color: $colour-text1;
@@ -287,7 +287,7 @@ pre {
287287
}
288288

289289
code {
290-
font-family: Consolas, 'Courier New', monospace;
290+
font-family: $font-stack-code;
291291
color: $colour-link-highlight!important;
292292
background-color: rgba($colour-link-highlight, 0.1);
293293
font-size: .8em;

src/docs/variables.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
$font-stack-regular: 'Roboto Condensed', sans-serif;
2+
$font-stack-code: Consolas, Menlo, 'Courier New', monospace;
3+
14
$colour-bg1: #01AB8A;
25
$colour-bg2: #35C6E8;
36
$colour-text1: #EDFEFF;

0 commit comments

Comments
 (0)