Skip to content

Instantly share code, notes, and snippets.

@stuarthallows
Created December 17, 2020 23:35
Show Gist options
  • Save stuarthallows/3581707e567d22593babdef578df9809 to your computer and use it in GitHub Desktop.
Save stuarthallows/3581707e567d22593babdef578df9809 to your computer and use it in GitHub Desktop.
.grow {
transition: transform 150ms ease-out 0s;
&:hover {
transform: scale(1.02);
}
}
.shift {
transition: transform 150ms ease-out 0s;
&:hover {
transform: translate3d(0px, -3px, 0px);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment