I want to make the effect like the following picture, when mouse hover to the card, make it zoom in.
I know I can use C# to modify the transform property, but that’s obviously a bit tricky, can it be done in USS?
In HTML/CSS, I can do it like this.
.ele:hover {
transform: scale(1.5);
}
But it looks like USS doesn’t support that?