This commit is contained in:
ManjaroOne666 2019-04-08 22:19:19 +01:00
commit 27b58b901f
2 changed files with 68 additions and 0 deletions

View file

@ -1,3 +1,7 @@
snippet sld "/* stylelint-disable-next-line ... */"
/* stylelint-disable-next-line ${1:declaration-block-no-shorthand-property-overrides} */
endsnippet
snippet @m "@media ..."
@media (${1:min}-${2:width}: $3) {
$0
@ -161,3 +165,10 @@ snippet bs "box-shadow ...;"
box-shadow: ${1:0} ${2:0} $3px $4px ${5:#000} ${6:inset};
endsnippet
snippet pabs "Position: absolute ..."
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
endsnippet