We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15a503f commit a35a18cCopy full SHA for a35a18c
changelog.md
@@ -1,6 +1,12 @@
1
Changelog
2
=========
3
4
+0.15.1 (2021-05-23)
5
+-------------------
6
+
7
+* Load custom stylesheets after theme sheets.
8
9
10
0.15.0 (2021-05-23)
11
-------------------
12
src/index.ts
@@ -239,7 +239,7 @@ function normalizeOptions(options?: Partial<Options>): Options {
239
const newOptions:Options = Object.assign(defaults, options) as Options;
240
241
if (newOptions.theme !== null) {
242
- newOptions.stylesheets.push(
+ newOptions.stylesheets.unshift(
243
`themes/${newOptions.theme}/main.css`,
244
`themes/${newOptions.theme}/highlight.css`
245
);
0 commit comments