Skip to content

Instantly share code, notes, and snippets.

@samuelhorn
Last active December 24, 2015 13:59
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 samuelhorn/6809341 to your computer and use it in GitHub Desktop.
Save samuelhorn/6809341 to your computer and use it in GitHub Desktop.
SCSS/Bourbon snippets
<snippet>
<content><![CDATA[
@include animation(${1:fadeIn} ${2:.25s} ${3:ease-in-out});
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>animation</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>
<snippet>
<content><![CDATA[
@include keyframes(${1:fadeIn}) {
from {
${2:opacity: 0;}
}
to {
${3:opacity: 1;}
}
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>keyframes</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment