Skip to content

Commit 3d9069e

Browse files
committed
add styling for spinner
1 parent f4750d1 commit 3d9069e

File tree

1 file changed

+30
-5
lines changed

1 file changed

+30
-5
lines changed

components/spinner/Spinner.vue

+30-5
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<div>
33
<transition name="fade" enter-active-class="duration-0-4 animated fadeIn" leave-active-class="duration-0-4 animated fadeOut">
44
<div class="text-center text-grey">
5-
<div class="pa-spinner inline-flex">
6-
<div class="pa-spinner-circle1"></div>
7-
<div class="pa-spinner-circle2 ml-1"></div>
8-
<div class="pa-spinner-circle3 ml-1"></div>
5+
<div class="vb-spinner inline-flex">
6+
<div class="vb-spinner-circle1"></div>
7+
<div class="vb-spinner-circle2 ml-1"></div>
8+
<div class="vb-spinner-circle3 ml-1"></div>
99
</div>
1010

1111
<p>{{ loadingText }}</p>
@@ -20,4 +20,29 @@ export default {
2020
}
2121
</script>
2222

23-
<style></style>
23+
<style>
24+
.vb-spinner > div {
25+
width: 18px;
26+
height: 18px;
27+
@apply .bg-green .rounded-full;
28+
animation: spinner-bounce-delay 1.4s infinite ease-in-out both, color-animation 2.8s infinite ease-in-out both;
29+
}
30+
31+
.vb-spinner .vb-spinner-circle1 {
32+
animation-delay: -0.32s;
33+
}
34+
35+
.vb-spinner .vb-spinner-circle2 {
36+
animation-delay: -0.16s;
37+
}
38+
39+
@keyframes spinner-bounce-delay {
40+
0%, 80%, 100% {
41+
transform: scale(0.3);
42+
}
43+
44+
40% {
45+
transform: scale(1.0);
46+
}
47+
}
48+
</style>

0 commit comments

Comments
 (0)