This commit is contained in:
syuilo 2020-02-12 02:35:03 +09:00
parent d70f7a717b
commit 7493429b4d

View file

@ -27,20 +27,19 @@ export default Vue.extend({
> .ring { > .ring {
display: inline-block; display: inline-block;
width: 80px;
height: 80px;
opacity: 0.7; opacity: 0.7;
vertical-align: middle;
} }
> .ring:after { > .ring:after {
content: " "; content: " ";
display: block; display: block;
width: 64px; box-sizing: border-box;
height: 64px; width: 48px;
margin: 8px; height: 48px;
border-radius: 50%; border-radius: 50%;
border: solid 6px; border: solid 4px;
border-color: var(--fg) transparent transparent transparent; border-color: currentColor transparent transparent transparent;
animation: ring 0.5s linear infinite; animation: ring 0.5s linear infinite;
} }
} }