Browse Source

fix(style): code font-family no longer loaded from font theme

$sta-font-mono was referenced as literal during CSS->SCSS conversion.

Fix #1139
George Cushen 6 years ago
parent
commit
4fed5675e9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      assets/sass/academic/_root.scss

+ 1 - 1
assets/sass/academic/_root.scss

@@ -159,7 +159,7 @@ figcaption h4 {
 
 pre,
 code {
-  font-family: '$sta-font-mono', monospace;
+  font-family: $sta-font-mono, monospace;
   color: #c7254e;
   background-color: #f9f2f4;
 }