juxscript 1.1.59 → 1.1.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/utils/codeparser.js
CHANGED
|
@@ -306,7 +306,7 @@ export function getSyntaxHighlightCSS() {
|
|
|
306
306
|
return `
|
|
307
307
|
/* Semantic Code Highlighting */
|
|
308
308
|
.jux-code {
|
|
309
|
-
font-family: '
|
|
309
|
+
font-family: 'Consolas', 'Monaco', monospace;
|
|
310
310
|
font-size: 14px;
|
|
311
311
|
line-height: 1.6;
|
|
312
312
|
background: #1e1e1e;
|
package/lib/utils/codeparser.ts
CHANGED
|
@@ -332,7 +332,7 @@ export function getSyntaxHighlightCSS(): string {
|
|
|
332
332
|
return `
|
|
333
333
|
/* Semantic Code Highlighting */
|
|
334
334
|
.jux-code {
|
|
335
|
-
font-family: '
|
|
335
|
+
font-family: 'Consolas', 'Monaco', monospace;
|
|
336
336
|
font-size: 14px;
|
|
337
337
|
line-height: 1.6;
|
|
338
338
|
background: #1e1e1e;
|