You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Applying a general transform: translateZ(0) to every element is a bad solution, and breaks things like fixed positioning. This * matcher will not play nice with other elements on a web page. It should be removed, but I'm not sure the impact that would have on the Textify library
I have identified if we remove this css our other css is not breaking but with it our other css is breaking
* { -webkit-font-feature-settings: "kern" 1; -moz-font-feature-settings: "kern" 1; -ms-font-feature-settings: "kern" 1; -o-font-feature-settings: "kern" 1; font-feature-settings: "kern" 1; font-kerning: none; -webkit-text-rendering: optimizeSpeed; text-rendering: optimizeSpeed; -webkit-transform: translateZ(0); transform: translateZ(0); }
The text was updated successfully, but these errors were encountered: