SCSS vscode snippet
{
"Sass Breakpoint": {
"prefix": "bp",
"body": [
"@include bp($1){",
"\t$2",
"}"
],
"description": "Breakpoint mixin"
},
"Mobile Breakpoint": {
"prefix": "mobile",
"body": [
"@include bp(mobile){",
"\t$1",
"}"
],
"description": "Mobile breakpoint mixin"
},
"Landscape Breakpoint": {
"prefix": "landscape",
"body": [
"@include bp(landscape){",
"\t$1",
"}"
],
"description": "Landscape breakpoint mixin"
},
"Portrait Breakpoint": {
"prefix": "portrait",
"body": [
"@include bp(portrait){",
"\t$1",
"}"
],
"description": "Portrait breakpoint mixin"
}
}