[UI] Use `.min.css` file for the Highlight.js styles.

This commit is contained in:
Fabio Manganiello 2023-10-17 02:10:17 +02:00
parent 3366732fa8
commit 9769520e88
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
4 changed files with 5 additions and 3 deletions

View File

@ -103,7 +103,7 @@
<script>
import 'highlight.js/lib/common'
import 'highlight.js/styles/stackoverflow-dark.css'
import 'highlight.js/styles/stackoverflow-dark.min.css'
import hljs from "highlight.js"
import ActionArgs from "./ActionArgs"
import ActionDoc from "./ActionDoc"

View File

@ -23,7 +23,7 @@
<script>
import 'highlight.js/lib/common'
import 'highlight.js/styles/stackoverflow-dark.css'
import 'highlight.js/styles/stackoverflow-dark.min.css'
import hljs from "highlight.js"
import Utils from "@/Utils"

View File

@ -13,7 +13,7 @@
<script>
import 'highlight.js/lib/common'
import 'highlight.js/styles/stackoverflow-dark.css'
import 'highlight.js/styles/stackoverflow-dark.min.css'
import hljs from "highlight.js"
import Utils from "@/Utils";

View File

@ -168,3 +168,5 @@ $row-shadow: 0 0 1px 0.5px #cfcfcf !default;
//// Code blocks
$code-dark-bg: #090909 !default;
$code-dark-fg: #f0f0f0 !default;
$code-light-bg: #f2f0e9 !default;
$code-light-fg: #090909 !default;