Use CSS keyframe animation for spinner on web (#3411)
* Use css keyframe animation for spinner on web * duplicate css to index.html
This commit is contained in:
parent
575f390d7b
commit
93b606e55a
4 changed files with 66 additions and 2 deletions
|
@ -220,6 +220,21 @@
|
|||
.nativeDropdown-item:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
/* Spinner component */
|
||||
@keyframes rotate {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
.rotate-500ms {
|
||||
position: absolute;
|
||||
inset:0;
|
||||
animation: rotate 500ms linear infinite;
|
||||
}
|
||||
</style>
|
||||
{% include "scripts.html" %}
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue