Skip to content

Commit

Permalink
Fixed background of loading bar
Browse files Browse the repository at this point in the history
  • Loading branch information
linkdotnet committed Dec 3, 2022
1 parent 4f03435 commit 8842ad0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LinkDotNet.Blog.Web/Features/Components/Loading.razor
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="margin: auto; background:
rgb(255, 255, 255, 0.0); display: block; shape-rendering: auto;" width="200px" height="200px" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid">
rgb(255, 255, 255, 0.0); display: block; shape-rendering: auto;" class="shadow-none" width="200px" height="200px" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid">
<g transform="rotate(0 50 50)">
<rect x="44" y="13" rx="6" ry="6" width="12" height="12" fill="var(--button-primary-color)">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.9285714285714286s" repeatCount="indefinite"></animate>
Expand Down Expand Up @@ -59,5 +59,5 @@
</rect>
</g>
</svg>
<h1 class="text-center">Getting latest information</h1>
<h1 class="text-center shadow-none">Getting latest information</h1>
</div>

0 comments on commit 8842ad0

Please sign in to comment.