Skip to content
Prev Previous commit
Next Next commit
Add hover animation
  • Loading branch information
tobiasahlin committed Mar 18, 2021
commit 8d0ca03ed7d7caf87646d00f633258f8845b1d0d
9 changes: 9 additions & 0 deletions src/marketing/utilities/animation.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Animation utilities for marketing

.hover-grow-mktg {
transition: transform 0.25s cubic-bezier(0.76, 0, 0.24, 1);

&:hover {
transform: scale3d(1.025, 1.025, 1.025);
}
}