aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorTiger Oakes <contact@tigeroakes.com>2020-10-23 13:44:46 -0700
committerTiger Oakes <contact@tigeroakes.com>2020-10-23 13:44:46 -0700
commitb04e718367297b95aedad2efb2c74bfd8e3be37f (patch)
treedf13554dcb985fe90042aef970285e866d89942b /src
parentf70fc3ecaee1bded5d699728ab50aada9982b198 (diff)
downloadhomer-b04e718367297b95aedad2efb2c74bfd8e3be37f.tar.gz
homer-b04e718367297b95aedad2efb2c74bfd8e3be37f.tar.zst
homer-b04e718367297b95aedad2efb2c74bfd8e3be37f.zip
Update paths and style
Diffstat (limited to 'src')
-rw-r--r--src/App.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/App.vue b/src/App.vue
index 03760fd..eb132d0 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -161,7 +161,7 @@ export default {
161 this.services = this.config.services; 161 this.services = this.config.services;
162 document.title = `${this.config.title} | ${this.config.subtitle}`; 162 document.title = `${this.config.title} | ${this.config.subtitle}`;
163 if (this.config.stylesheet) { 163 if (this.config.stylesheet) {
164 let stylesheet = ''; 164 let stylesheet = "";
165 for (const file of this.config.stylesheet) { 165 for (const file of this.config.stylesheet) {
166 stylesheet += `@import "${file}";`; 166 stylesheet += `@import "${file}";`;
167 } 167 }
@@ -242,8 +242,8 @@ export default {
242 }, 242 },
243 }; 243 };
244 }, 244 },
245 createStylesheet: function(css) { 245 createStylesheet: function (css) {
246 let style = document.createElement('style'); 246 let style = document.createElement("style");
247 style.appendChild(document.createTextNode(css)); 247 style.appendChild(document.createTextNode(css));
248 document.head.appendChild(style); 248 document.head.appendChild(style);
249 }, 249 },