File tree Expand file tree Collapse file tree 3 files changed +40
-6
lines changed
Expand file tree Collapse file tree 3 files changed +40
-6
lines changed Original file line number Diff line number Diff line change 11<template >
2- <div class =" spinner-border text-center align-self-center" role =" status" ></div >
2+ <div class =" spinner" >
3+ <div class =" bounce" ></div >
4+ <div class =" bounce" ></div >
5+ <div class =" bounce" ></div >
6+ <div class =" bounce" ></div >
7+ <div class =" bounce" ></div >
8+ </div >
39</template >
410
511<style lang="scss" scoped>
6- $meret : 10rem ;
7- .spinner-border {
12+ $db : 5 ;
13+ $meret : 3rem ;
14+ .spinner {
15+ margin : 100px auto 0 ;
16+ width : ($meret + 0.4rem ) * $db ;
17+ text-align : center ;
18+ }
19+
20+ .spinner > div {
821 width : $meret ;
922 height : $meret ;
10- // border: 5px;
23+ margin : 0.2rem ;
24+ background-color : $dark ;
25+ border-radius : 100% ;
26+ display : inline-block ;
27+ animation : sk- bouncedelay 1.4s infinite ease-in-out both ;
28+ }
29+
30+ @for $i from 1 to $db + 1 {
31+ .spinner .bounce :nth-child (#{$i } ) {
32+ animation-delay : 0.16s * $i ;
33+ }
34+ }
35+
36+ @keyframes sk-bouncedelay {
37+ 0%,
38+ 80%,
39+ 100% {
40+ transform : scale (0 );
41+ }
42+ 40% {
43+ transform : scale (1 );
44+ }
1145}
1246 </style >
Original file line number Diff line number Diff line change 11<template >
22 <div class =" h3 my-3" >Felhasználói fiókok</div >
3- <base-dialog :show =" !!selectedId" title =" Felhasználó szerkesztése" upper footless >
3+ <base-dialog :show =" !!selectedId" title =" Felhasználó szerkesztése" upper footless @close = " close " >
44 <profile :id =" selectedId" imported @close =" close" ></profile >
55 </base-dialog >
66 <base-loader v-if =" loading" >Loading...</base-loader >
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ export default {
4848 });
4949 }
5050 results .value = datas;
51- // isLoading.value = false;
51+ isLoading .value = false ;
5252 })
5353 .catch (err => {
5454 error .value = err;
You can’t perform that action at this time.
0 commit comments