mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 21:06:42 +07:00
made new styled loader circle
This commit is contained in:
parent
94c656fe0f
commit
bcd1094575
5 changed files with 75 additions and 6 deletions
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,36 @@
|
|||
@import "~/styles/variables";
|
||||
|
||||
@keyframes spin {
|
||||
0% {
|
||||
transform: rotate(0);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.icon {
|
||||
fill: currentColor;
|
||||
stroke: none;
|
||||
}
|
||||
|
||||
.e0 {
|
||||
animation: spin infinite linear 2s;
|
||||
transform-origin: 50% 50%;
|
||||
opacity: 0.1;
|
||||
}
|
||||
|
||||
.e1 {
|
||||
animation: spin infinite reverse 2s -0.25s;
|
||||
transform-origin: 50% 50%;
|
||||
opacity: 0.1;
|
||||
}
|
||||
.e2 {
|
||||
animation: spin infinite linear 2s -0.25s;
|
||||
transform-origin: 50% 50%;
|
||||
opacity: 0.1;
|
||||
}
|
||||
|
||||
.e {
|
||||
opacity: 0.1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue