Merge pull request #72 from arjunkomath/staging

Fix spinner rendering inside buttons
This commit is contained in:
Arjun Komath
2026-05-09 10:37:04 +10:00
committed by GitHub
+6
View File
@@ -1047,7 +1047,10 @@ img { max-width: 100%; height: auto; }
}
.spinner {
display: inline-block;
flex-shrink: 0;
border: 2px solid var(--border);
border-top-color: currentColor;
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@@ -1058,9 +1061,12 @@ img { max-width: 100%; height: auto; }
.spinner-lg { width: 2.5rem; height: 2.5rem; margin: 0 auto 2rem; }
.spinner-md { width: 2rem; height: 2rem; margin: 0 auto 1rem; }
.spinner-inline {
display: inline-block;
flex-shrink: 0;
width: 1rem;
height: 1rem;
border-top-color: currentColor;
transform-origin: center;
vertical-align: middle;
animation: spin 0.8s linear infinite;
}