forked from nutomic/joinpeertube
Fix instances list animation
This commit is contained in:
parent
47844eb603
commit
c262443598
1 changed files with 22 additions and 18 deletions
|
@ -106,9 +106,9 @@
|
|||
<div class="title">
|
||||
<translate>Instances list</translate>
|
||||
|
||||
<transition name="mascot-loading">
|
||||
<div class="mascot-loading-block">
|
||||
<img v-bind:class="{ animate: loadingAnimation }" v-on:animationend="loadingAnimation = false" class="mascot-loading" :src="buildImgUrl('mascot/happy.png')" alt="PeerTube mascot">
|
||||
</transition>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="list" v-bind:class="{ unloaded: !error && !noResults && instances.length === 0 }">
|
||||
|
@ -186,6 +186,9 @@
|
|||
}
|
||||
}
|
||||
|
||||
.mascot-loading-block {
|
||||
width: 100%;
|
||||
|
||||
.mascot-loading {
|
||||
display: none;
|
||||
|
||||
|
@ -204,13 +207,14 @@
|
|||
}
|
||||
|
||||
100% {
|
||||
margin-left: calc(100% - 300px);
|
||||
margin-left: calc(100% - 150px);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: $responsive-screen) {
|
||||
.custom-checkbox {
|
||||
|
|
Loading…
Reference in a new issue