Skip to content
Snippets Groups Projects
Commit 4f95b27e authored by Bekerle, Patrizio's avatar Bekerle, Patrizio :fire: Committed by Reiter, Christoph
Browse files

Use currentColor instead of black for the mini-spinner

parent 1d7b4545
No related branches found
No related tags found
No related merge requests found
...@@ -21,10 +21,10 @@ class MiniSpinner extends LitElement { ...@@ -21,10 +21,10 @@ class MiniSpinner extends LitElement {
position: absolute; position: absolute;
width: 100%; width: 100%;
height: 100%; height: 100%;
border: 0.2em solid #000; border: 0.2em solid currentColor;
border-radius: 50%; border-radius: 50%;
animation: ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; animation: ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
border-color: #000 transparent transparent transparent; border-color: currentColor transparent transparent transparent;
} }
.ring div:nth-child(1) { .ring div:nth-child(1) {
animation-delay: -0.45s; animation-delay: -0.45s;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment