attemt to fix production

This commit is contained in:
Henry Jameson 2024-09-16 03:06:19 +03:00
parent 2abde63afc
commit 5bbfa5ab25
2 changed files with 6 additions and 4 deletions

View file

@ -22,7 +22,7 @@
font-family: sans-serif; font-family: sans-serif;
color: #b9b9ba; color: #b9b9ba;
position: absolute; position: absolute;
z-index: 99; z-index: 999999;
" "
> >
<img <img

View file

@ -46,9 +46,11 @@ export default {
}), }),
watch: { watch: {
themeApplied (value) { themeApplied (value) {
document.querySelector('#app').classList.remove('hidden') this.$nextTick(() => {
document.querySelector('#splash').classList.add('hidden') document.querySelector('#app').classList.remove('hidden')
document.querySelector('#status').textContent = this.$t('splash.fun_' + Math.ceil(Math.random() * 4)) document.querySelector('#splash').classList.add('hidden')
document.querySelector('#status').textContent = this.$t('splash.fun_' + Math.ceil(Math.random() * 4))
})
} }
}, },
created () { created () {