grass/tests/calc_args.rs
Connor Skees ffaee04613
rewrite parsing, evaluation, and serialization (#67)
Adds support for the indented syntax, plain CSS imports, `@forward`, and many other previously missing features.
2022-12-26 15:33:04 -05:00

13 lines
180 B
Rust

#[macro_use]
mod macros;
test!(
arg_is_binop,
"@use \"sass:meta\";
a {
color: meta.calc-args(calc(1vh + 1px));
}",
"a {\n color: 1vh + 1px;\n}\n"
);