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