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