diff --git a/docs/content/2.features/5.variants.md b/docs/content/2.features/5.variants.md index e1b79097..a0f4021c 100644 --- a/docs/content/2.features/5.variants.md +++ b/docs/content/2.features/5.variants.md @@ -165,6 +165,9 @@ A regular hover event listener, it will not work on mobile devices. :initial="{ scale: 1, }" + :visible="{ + scale: 1, + }" :hovered="{ scale: 1.2, }" @@ -183,6 +186,9 @@ A regular focus event listener. :initial="{ scale: 1, }" + :visible="{ + scale: 1, + }" :focused="{ scale: 1.1, }" @@ -203,6 +209,9 @@ It will switch between them depending on the user supported pointer events. :initial="{ scale: 1, }" + :hovered="{ + scale: 1, + }" :tapped="{ scale: 0.8, }"