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