Initial commit
This commit is contained in:
20
code/UI/MenuComponents/LuckerSpinner.razor.scss
Normal file
20
code/UI/MenuComponents/LuckerSpinner.razor.scss
Normal file
@@ -0,0 +1,20 @@
|
||||
LuckerSpinner {
|
||||
.loader {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border: 5px solid #FFF;
|
||||
border-bottom-color: transparent;
|
||||
border-radius: 50%;
|
||||
animation-name: rotation;
|
||||
animation-duration: 1s;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
}
|
||||
@keyframes rotation {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user