Merge pull request #466 from Safelite/feature/CSR-550

CSR-550 | Delay animation on modal until render
This commit is contained in:
scottkiener 2022-05-18 09:52:10 -04:00 committed by GitHub
commit 750a2759ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View file

@ -1,9 +1,9 @@
<template> <template>
<div v-show="isModalVisible" class="loading-modal-backdrop"> <div v-if="isModalVisible" class="loading-modal-backdrop">
<div class="loading-modal"> <div class="loading-modal">
<section class="loading-modal-body"> <section class="loading-modal-body">
<div class="modal-icon-container text-center"> <div class="modal-icon-container text-center">
<img class="" alt="Loading" src="@/assets/img/FMGTransitionAnimation.svg"> <img alt="Loading" src="@/assets/img/FMGTransitionAnimation.svg">
</div> </div>
</section> </section>
</div> </div>