Created
March 6, 2017 06:31
-
-
Save Blumed/84937182dd63863beddfa1446f8ae538 to your computer and use it in GitHub Desktop.
Visual Studio Code Snippet - Bootstrap3 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
"BS3 Media Query Snippet": { | |
"prefix": "bs-media", | |
"body": [ | |
"@media ($minMax-width: \\$screen-$xsSmMdLg-$minMax) {\n\t$0\n}" | |
], | |
"description": "BS3 MediaQuery" | |
}, | |
"BS3 Media Query Self Only Snippet ": { | |
"prefix": "bs-media-only", | |
"body": [ | |
"@media (min-width: \\$screen-$xsSmMdLg-min) and (max-width: \\$screen-$xsSmMdLg-max) {\n\t$0\n}" | |
], | |
"description": "BS3 MediaQuery Single Size Only" | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment