Skip to content

Instantly share code, notes, and snippets.

@Blumed
Created March 6, 2017 06:31
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 Blumed/84937182dd63863beddfa1446f8ae538 to your computer and use it in GitHub Desktop.
Save Blumed/84937182dd63863beddfa1446f8ae538 to your computer and use it in GitHub Desktop.
Visual Studio Code Snippet - Bootstrap3 Media Query
"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