Remove .active class from .spin

This commit is contained in:
Henrik Giesel 2020-12-25 20:07:52 +01:00
parent bd1505bdca
commit aeca0e0544
2 changed files with 1 additions and 6 deletions

View File

@ -127,7 +127,7 @@
{/if}
{#await dataPromise}
<div class="spin {refreshing ? 'active' : ''}"></div>
<div class="spin"></div>
{:then sourceData}
<div tabindex="-1" class="no-focus-outline">
{#each graphs as Graph}

View File

@ -150,12 +150,7 @@
animation-iteration-count: infinite;
display: inline-block;
font-size: 2em;
opacity: 0;
}
.spin.active {
opacity: 0.5;
transition: opacity 1s;
}
.legend-outer {