You could check out the answer to the question css transform, jagged edges in chrome
Helped me out
From the accepted answer:
In case anyone’s searching for this later on, a nice trick to get rid
of those jagged edges on CSS transformations in Chrome is to add the
CSS property-webkit-backface-visibility
with a value ofhidden
.
In my own tests, this has completely smoothed them out. Hope that
helps.