css snippets

This commit is contained in:
ManjaroOne666 2018-02-23 17:03:36 +00:00
parent a015c71ed6
commit 9100997c8f
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,11 @@
snippet mediamin "media query min:"
@media (min-width: $1${2:em}) {
$0
}
endsnippet
snippet mediamax "media query min:"
@media (max-width: $1${2:em}) {
$0
}
endsnippet

View File

@ -7,6 +7,8 @@ snippet befabs "&::before (absolute) skeleton"
height: 100%;
left: 0;
top: 0;
$0
}
endsnippet
@ -19,5 +21,7 @@ snippet aftabs "&::after (absolute) skeleton"
height: 100%;
left: 0;
top: 0;
$0
}
endsnippet