Compare commits

..

No commits in common. "ec963fd41f2074ecc51654b22741a987c974d3ed" and "d83f0323660c0de3807cdd1292f6eb006d80322e" have entirely different histories.

2 changed files with 16 additions and 16 deletions

View File

@ -3,7 +3,7 @@ snippet sld "/* stylelint-disable-next-line ... */"
endsnippet endsnippet
snippet @m "@media ..." snippet @m "@media ..."
@media (${1:min}-${2:width}: ${3:$bp-${4:s}}) { @media (${1:min}-${2:width}: ${3:$bp-s}) {
$0 $0
} }
endsnippet endsnippet
@ -39,19 +39,19 @@ snippet h "height: ;"
height: ${1:100%}; height: ${1:100%};
endsnippet endsnippet
snippet mxw "max-width: ;" snippet maxw "max-width: ;"
max-width: ${1:100%}; max-width: ${1:100%};
endsnippet endsnippet
snippet mxh "max-height: ;" snippet maxh "max-height: ;"
max-height: ${1:100%}; max-height: ${1:100%};
endsnippet endsnippet
snippet mnw "min-width: ;" snippet minw "min-width: ;"
min-width: ${1:100%}; min-width: ${1:100%};
endsnippet endsnippet
snippet mnh "min-height: ;" snippet minh "min-height: ;"
min-height: ${1:100%}; min-height: ${1:100%};
endsnippet endsnippet

View File

@ -416,17 +416,17 @@ iabbrev positin position
"}}} "}}}
" css{{{ " css{{{
" TODO move these into autocommand to just load in css, scss, jsx, files iabbrev pabs; position: absolute;
iabbrev pabs position: absolute; iabbrev pfix; position: fixed;
iabbrev pfix position: fixed; iabbrev prel; position: relative;
iabbrev prel position: relative; iabbrev fdr; flex-direction: row;
iabbrev fdr flex-direction: row; iabbrev fdc; flex-direction: column;
iabbrev fdc flex-direction: column; iabbrev jcc; justify-content: center;
iabbrev jcc justify-content: center; iabbrev aic; align-items: center;
iabbrev aic align-items: center; iabbrev t0; top: 0;
iabbrev ovh overflow: hidden; iabbrev b0; bottom: 0;
iabbrev ovv overflow: visible; iabbrev l0; left: 0;
iabbrev ova overflow: auto; iabbrev r0; right: 0;
iabbrev ct'' content-type: ''; iabbrev ct'' content-type: '';