1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00

Moved custom CSS to bottom of style definitions so that it has higher precedence.

This commit is contained in:
David Nagle
2018-10-22 10:47:47 -07:00
parent ff3026686f
commit b8d1e37cce

View File

@@ -80,7 +80,6 @@ function buildStyle (
url('${appPath}/resources/fonts/MaterialIcons-Regular.woff') format('woff'),
url('${appPath}/resources/fonts/MaterialIcons-Regular.ttf') format('truetype');
}
${allowCustomCSS ? customCSS : ''}
${markdownStyle}
body {
@@ -144,6 +143,8 @@ body p {
display: none
}
}
${allowCustomCSS ? customCSS : ''}
`
}