Skip to content

Instantly share code, notes, and snippets.

@nicollehahn
Last active October 24, 2018 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicollehahn/c4654baf23eb5e004e4802737e53eba0 to your computer and use it in GitHub Desktop.
Save nicollehahn/c4654baf23eb5e004e4802737e53eba0 to your computer and use it in GitHub Desktop.
Scale on hover with transition
.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