Skip to content

Commit

Permalink
fix: Prevent loader svg FOUC
Browse files Browse the repository at this point in the history
  • Loading branch information
kiosion committed Oct 4, 2023
1 parent 83f3101 commit 4586240
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions svelte-app/src/components/loading/spinner.svelte
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<svg
class="-ml-1 mt-0.5 h-5 w-5 animate-spin text-accent-light dark:text-accent-dark {$$props.class ||
class="-ml-1 mt-0.5 h-5 w-5 animate-spin text-accent-light !opacity-100 dark:text-accent-dark {$$props.class ||
''}"
style="opacity:0"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
>
<circle
class="!opacity-25"
class="opacity-25"
cx="12"
cy="12"
r="10"
stroke="currentColor"
stroke-width="4"
style="opacity: 0;"
/>
<path
class="opacity-75"
Expand Down

0 comments on commit 4586240

Please sign in to comment.