Skip to content

Instantly share code, notes, and snippets.

@saranrapjs
Created June 25, 2015 20:39
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 saranrapjs/55b3686b7599bd810187 to your computer and use it in GitHub Desktop.
Save saranrapjs/55b3686b7599bd810187 to your computer and use it in GitHub Desktop.
nested sass animation
.custom-selector {
& {
color:blue;
}
@-webkit-keyframes zoomer {
from {
transform:scale(0.5);
}
to {
transform:scale(1);
}
}
@keyframes zoomer {
from {
transform:scale(0.5);
}
to {
transform:scale(1);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment