Fixed .fa-spin so it centers properly

.fa-spin drifts in an ugly way without this fix. SSCCE: http://jsfiddle.net/Supuhstar/vqp8oL82/
This commit is contained in:
Supuhstar 2014-09-16 13:01:09 -04:00
parent a61b39d485
commit 1896613054

View File

@ -79,6 +79,8 @@
.fa-spin {
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear;
-webkit-transform-origin: 50% calc(50% - 1px);
transform-origin: 50% calc(50% - 1px);
}
.fa-spinner.fa-spin {
-webkit-animation-timing-function: steps(8, end);