aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.html2
-rw-r--r--src/App.js8
2 files changed, 6 insertions, 4 deletions
diff --git a/index.html b/index.html
index 809318cf..474c0244 100644
--- a/index.html
+++ b/index.html
@@ -22,7 +22,7 @@
font-family: sans-serif;
color: #b9b9ba;
position: absolute;
- z-index: 99;
+ z-index: 999999;
"
>
<img
diff --git a/src/App.js b/src/App.js
index 9c1f24a7..e1ce8808 100644
--- a/src/App.js
+++ b/src/App.js
@@ -46,9 +46,11 @@ export default {
}),
watch: {
themeApplied (value) {
- document.querySelector('#app').classList.remove('hidden')
- document.querySelector('#splash').classList.add('hidden')
- document.querySelector('#status').textContent = this.$t('splash.fun_' + Math.ceil(Math.random() * 4))
+ this.$nextTick(() => {
+ document.querySelector('#app').classList.remove('hidden')
+ document.querySelector('#splash').classList.add('hidden')
+ document.querySelector('#status').textContent = this.$t('splash.fun_' + Math.ceil(Math.random() * 4))
+ })
}
},
created () {