xref
: /
dports
/
textproc
/
p5-CSS-Sass
/
CSS-Sass-3.6.4
/
t
/
sass-spec
/
spec
/
libsass-closed-issues
/
issue_64.hrx
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
<===>
input.scss
2
$var: 10px;
3
p {
4
width: -$var;
5
}
6
<===>
output.css
7
p {
8
width: -10px;
9
}
10