0278fe6ae4
This reverts commit 39c1906e67.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
23 lines
590 B
CSS
23 lines
590 B
CSS
@layer components {
|
|
.spinner {
|
|
position: relative;
|
|
|
|
&::before {
|
|
--mask: no-repeat radial-gradient(#000 68%, #0000 71%);
|
|
--dot-size: 1.25em;
|
|
|
|
-webkit-mask: var(--mask), var(--mask), var(--mask);
|
|
-webkit-mask-size: 28% 45%;
|
|
animation: submitting 1.3s infinite linear;
|
|
aspect-ratio: 8/5;
|
|
background: currentColor;
|
|
content: "";
|
|
inline-size: var(--dot-size);
|
|
inset: 50% 0.25em;
|
|
margin-block: calc((var(--dot-size) / 3) * -1);
|
|
margin-inline: calc((var(--dot-size) / 2) * -1);
|
|
position: absolute;
|
|
}
|
|
}
|
|
}
|