Skip to content

Commit

Permalink
Removed loading screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Nrosa01 committed May 11, 2024
1 parent dd04d2a commit f2d90b7
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions src/components/Loader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,25 +46,4 @@ onMounted(async () => {
<div v-if="scriptsLoaded">
<Simulation></Simulation>
</div>
<Transition name="fade">
<div v-if="!scriptsLoaded"
class="absolute top-0 right-0 justify-center text-center items-center h-screen w-screen bg-black pointer-events-none transition-opacity duration-300 ease-in-out "
style="z-index: 10000">
<div class="flex w-full h-full text-center items-center justify-center">
<p class="text-white text-6xl font-bold left-0 overflow-visible">Loading...</p>
</div>

</div>
</Transition>
</template>

<style scoped>
.fade-enter-active {
transition: opacity .5s ease-in-out;
}

.fade-enter,
.fade-leave-active {
opacity: 0
}
</style>

0 comments on commit f2d90b7

Please sign in to comment.