diff options
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/functions/ceil.scss')
-rw-r--r-- | theme-compiler/tests/resources/automatic/scss/functions/ceil.scss | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/functions/ceil.scss b/theme-compiler/tests/resources/automatic/scss/functions/ceil.scss new file mode 100644 index 0000000000..ad7ceed4b4 --- /dev/null +++ b/theme-compiler/tests/resources/automatic/scss/functions/ceil.scss @@ -0,0 +1,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%); +} |