scss snippets

This commit is contained in:
ManjaroOne666 2018-02-23 16:31:22 +00:00
commit a015c71ed6
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
snippet befabs "&::before (absolute) skeleton"
&::before {
content: '';
display: block;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
}
endsnippet
snippet aftabs "&::after (absolute) skeleton"
&::after {
content: '';
display: block;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
}
endsnippet