Last active
November 28, 2016 21:03
-
-
Save darinronne/29ae2874fcc6e315eb08 to your computer and use it in GitHub Desktop.
Sublime Text Snippet: Zurb Foundation 5 CSS Media Query
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
<snippet> | |
<content><![CDATA[ | |
@media #{\$${1:medium-up}} { | |
$2 | |
} | |
]]></content> | |
<!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
<tabTrigger>f5bp</tabTrigger> | |
<!-- Optional: Set a scope to limit where the snippet will trigger --> | |
<scope>source.scss</scope> | |
</snippet> | |
<!-- | |
Sublime Text Snippet: Zurb Foundation 5 CSS Media Query | |
@media is a Zurb Foundation SASS Function for inserting CSS breakpoints | |
This is just shorthand to insert it faster. | |
Tab Trigger: f5bp | |
Default value is "medium-up". It seems like the most used media query. | |
To find folder to place this file in: | |
From st3 menu go to Preferences > Browse Packages | |
Then go into the \User directory | |
--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment