diff --git a/frontend/index.html b/frontend/index.html index 2b283a5b4..7fa35a7fe 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -33,16 +33,21 @@ } #app-loading-logo { + position: fixed; + top: 0; + left: 0; display: flex; - width: 100vw; - height: 100vh; justify-content: center; align-items: center; + width: 100vw; + height: 100vh; + z-index: 1020 !important; + background-color: rgba(13, 17, 23) !important; } #app-loading-logo img { - width: 25%; - height: 25%; + width: 30%; + height: 30%; opacity: 0.1; } diff --git a/frontend/src/RomM.vue b/frontend/src/RomM.vue index d9915747a..320efb541 100644 --- a/frontend/src/RomM.vue +++ b/frontend/src/RomM.vue @@ -20,17 +20,15 @@ storeLanguage.setLanguage(selectedLanguage.value); - - + @@ -40,4 +38,14 @@ storeLanguage.setLanguage(selectedLanguage.value); #main.no-transition { transition: none; } + +.fade-enter-active, +.fade-leave-active { + transition: opacity 0.5s ease; +} + +.fade-enter-from, +.fade-leave-to { + opacity: 0; +}