Last active
October 24, 2018 15:01
-
-
Save nicollehahn/c4654baf23eb5e004e4802737e53eba0 to your computer and use it in GitHub Desktop.
Scale on hover with transition
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.grow { transition: all .2s ease-in-out; } | |
.grow:hover { transform: scale(1.1); } | |
thx to CSS Tricks! https://css-tricks.com/snippets/css/scale-on-hover-with-webkit-transition/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment