fix stacking context in award.svg

currently the circle renders under the polyline, making it tricky to apply both a fill and stroke to the svg as the polyline fill cuts off the circle stroke. this PR would just swap the stacking context of the polyline and circle.

credit @kellykavousi for catching this
This commit is contained in:
pablomikel 2022-10-20 16:04:36 -07:00 committed by GitHub
parent f81cd40fdc
commit 419547e1c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,6 @@
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="8" r="7" />
<polyline points="8.21 13.89 7 23 12 20 17 23 15.79 13.88" />
<circle cx="12" cy="8" r="7" />
</svg>

Before

Width:  |  Height:  |  Size: 306 B

After

Width:  |  Height:  |  Size: 306 B