summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/functions/abs.scss
blob: 91946f0556f5dc908b29b0262af7c3e9dfaba0d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
.foo {
a: abs(0);
b: abs(-12.51);
c: abs(-1.1px);
d: abs(12);
e: abs(12px);
f: abs(12.9999);
g: abs(12.9999em);
h: abs(-13.0001);
i: abs(-13.0001%);
}