Skip to content

Instantly share code, notes, and snippets.

@coreymcollins
Created October 10, 2018 20:05
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 coreymcollins/fde6592139ff339ce3e91f5d910ae526 to your computer and use it in GitHub Desktop.
Save coreymcollins/fde6592139ff339ce3e91f5d910ae526 to your computer and use it in GitHub Desktop.
VS Code Sass/CSS Snippets
"Section Comment": {
"prefix": "element comment",
"body": [
"//-----------------------------------------",
"// ${1:partial section comment}",
"//-----------------------------------------",
"$0"
],
"description": "Partial Section Comment Block"
}
"Open brackets": {
"prefix": "open",
"body": [
"${1:target} {",
" $0",
"} // ${1:target}"
],
"description": "Open and close a new argument with comments"
},
"Partial Comment": {
"prefix": "partial comment",
"body": [
"//--------------------------------------------------------------",
"// ${1:partial file comment}",
"//--------------------------------------------------------------",
"$0"
],
"description": "Partial File Comment Block"
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment