diff --git a/src/components/InstancesList.vue b/src/components/InstancesList.vue
index b6af7f1..c8b98d0 100644
--- a/src/components/InstancesList.vue
+++ b/src/components/InstancesList.vue
@@ -106,9 +106,9 @@
Instances list
-
+
-
+
@@ -186,26 +186,30 @@
}
}
- .mascot-loading {
- display: none;
+ .mascot-loading-block {
+ width: 100%;
- @media screen and (min-width: $responsive-screen) {
- &.animate {
- display: block;
- animation: mascotLoadingAnimation 1s normal ease-out;
+ .mascot-loading {
+ display: none;
- @keyframes mascotLoadingAnimation {
- 0% {
- margin-left: 0;
- }
+ @media screen and (min-width: $responsive-screen) {
+ &.animate {
+ display: block;
+ animation: mascotLoadingAnimation 1s normal ease-out;
- 50% {
- opacity: 1;
- }
+ @keyframes mascotLoadingAnimation {
+ 0% {
+ margin-left: 0;
+ }
- 100% {
- margin-left: calc(100% - 300px);
- opacity: 0;
+ 50% {
+ opacity: 1;
+ }
+
+ 100% {
+ margin-left: calc(100% - 150px);
+ opacity: 0;
+ }
}
}
}