I've read multiple threads around this and I'm sure I'm missing something blindingly obvious, but I just can't see it. The below works fine on other browsers (Google, Brave etc), but no transition/transforms work on iOS. What am I missing??
.flexitem {
display:flex;
flex-direction:column;
-webkit-transition: -webkit-transform 0.20s ease 0s;
transition: transform 0.20s ease;
width:100%;
background-color: white;
border-radius: 40px;
box-shadow: 0 10px 40px rgba(0,0,0,25%);
margin:2rem;
height:70rem;
}
.flexitem:active {
/* transform: scale(.98);
transition: transform 0.20s ease; */
-webkit-transform: scale(.95);
-o-transform: scale(.95);
-ms-transform: scale(.95);
transform: scale(.95);
box-shadow: 0 10px 40px rgba(0,0,0,25%);
}