I'm using font-awesome for my loading notification, but it's driving me crazy that there is just a slight offset causing the rotation to have a "wobble"
html
<div class="loading-div fa fa-cog fa-spin"></div>
css
.loading-div{
position: absolute;
z-index: 9999;
font-size: 200px;
}
https://jsfiddle.net/69x2j60j/
I noticed that it's containing div is not square, but if I try to set height, width to static pixels it only gets worse... thoughts?