1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-18 14:04:04 +00:00

Add nice loading indicator to the host tree

This commit is contained in:
2023-12-22 17:05:32 +01:00
parent 426b0b8468
commit fd1340f9e4
5 changed files with 47 additions and 9 deletions

View File

@ -11,11 +11,6 @@
</script>
<style>
@keyframes spinning {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
svg {
transition: transform 0.25s;
will-change: transform;
@ -23,7 +18,7 @@
height: 1.2em;
}
svg.spinning {
animation: spinning 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
:global(.field) svg {