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

Merge pull request #2524 from nagledb/custom-css

Moved custom CSS to bottom of style definitions so that it has higher precedence.
This commit is contained in:
Junyoung Choi (Sai)
2018-10-23 17:11:45 +09:00
committed by GitHub

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 : ''}
`
}