I am facing an issue with a simple font-size transition in Safari, causing stuttering while it works smoothly in Chrome and Firefox. I'm not sure if this is a Safari problem, a Webkit issue, or something else entirely. Any workaround suggestions would be greatly appreciated.
input {
font-size: 1vw;
transition: font-size 0.4s;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: none;
box-shadow: none;
outline: none;
}
input:focus {
font-size: 1.2vw;
}
<input type="text" placeholder="hello" value="hello"></input>