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