Dark theme improvements

This commit is contained in:
Bastien Wirtz
2020-10-16 21:29:28 -07:00
parent e608701404
commit 67fd101a38
3 changed files with 12 additions and 12 deletions

View File

@@ -159,7 +159,9 @@ export default {
}
this.config = merge(defaults, config);
this.services = this.config.services;
document.title = this.config.documentTitle || `${this.config.title} | ${this.config.subtitle}`;
document.title =
this.config.documentTitle ||
`${this.config.title} | ${this.config.subtitle}`;
if (this.config.stylesheet) {
let stylesheet = "";
for (const file of this.config.stylesheet) {