add snippets

This commit is contained in:
ManjaroOne666 2019-07-30 12:35:37 +01:00
commit 765182a79b
2 changed files with 10 additions and 3 deletions

View file

@ -123,6 +123,14 @@ snippet o "opacity: ... ;"
opacity: ${1:0};
endsnippet
snippet rgbw "rgba( ... )"
rgba(${1:#fff}, ${2:0.5})
endsnippet
snippet rgbb "rgba( ... )"
rgba(${1:#000}, ${2:0.5})
endsnippet
snippet before "::before { ... }"
${1:&}::before {
content: '$2';