Make buttons without hover states react on hover

This commit is contained in:
Jason Zimdars
2024-10-03 16:02:58 -05:00
parent cdd46a3e98
commit f261b9b8b0
+8
View File
@@ -164,6 +164,14 @@
--btn-icon-size: 100%;
--btn-padding: 0;
--hover-size: 0;
@media (hover: hover) {
transition: scale 200ms ease-out;
&:hover {
scale: 1.2;
}
}
}
.btn--positive {