aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/assets/app.scss2
-rw-r--r--src/main.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/assets/app.scss b/src/assets/app.scss
index 5102f93..d112482 100644
--- a/src/assets/app.scss
+++ b/src/assets/app.scss
@@ -13,7 +13,7 @@
13 text-overflow: ellipsis; 13 text-overflow: ellipsis;
14} 14}
15 15
16html, body, body #app { 16html, body, body #app-mount, body #app {
17 height: 100%; 17 height: 100%;
18 background-color: var(--background); 18 background-color: var(--background);
19} 19}
diff --git a/src/main.js b/src/main.js
index 164d290..a1d7b47 100644
--- a/src/main.js
+++ b/src/main.js
@@ -10,4 +10,4 @@ app.component("DynamicStyle", (_props, context) => {
10 return h("style", {}, context.slots); 10 return h("style", {}, context.slots);
11}); 11});
12 12
13app.mount("#app"); 13app.mount("#app-mount");