A fix for when your elements move up and/or blur during animations/interactions on Chrome

You may want to declare it like this if you want things to work on browsers outside mac os:

.your-transforming-element {

    font-smooth: always !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;

}

Also this is not guaranteed to work, it helped a little bit, but not 100%.