re: #56 try a css hack to force GPU hardware acceleration for the .spin animation

pull/103/head
Devon Bagley 5 years ago
parent 2ee950d1c3
commit 9d7134ecc7

@ -59,8 +59,12 @@
span.failed { color: firebrick; }
span.aborted { color: indigo; }
span.spin {
backface-visibility: hidden;
perspective: 1000;
color: steelblue;
transform: translateZ(0);
animation: 2s linear infinite spin;
will-change: transform;
}
@keyframes spin {
to { transform: rotate(360deg); }

Loading…
Cancel
Save