Commit 19ff5532 authored by Robert Knight's avatar Robert Knight

Fix spinner animation

`@keyframes($name)` is not legal syntax. I'm unsure if this ever worked
in the past in older browsers or if it was previously converted by a
post-processor to valid syntax.
parent 5b9b6efd
......@@ -11,7 +11,7 @@ $container-height: $container-width;
$part-width: .1em;
$part-height: 3 * $part-width;
@keyframes(spin) {
@keyframes spin {
to { transform: rotate(1turn); }
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment