scss snippets
This commit is contained in:
parent
119fe2e3d7
commit
a015c71ed6
|
@ -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
|
|
@ -1,3 +1,5 @@
|
||||||
|
extends html, javascript, css, scss
|
||||||
|
|
||||||
snippet vue "Default template"
|
snippet vue "Default template"
|
||||||
<template>
|
<template>
|
||||||
$0
|
$0
|
||||||
|
|
Loading…
Reference in New Issue