Dart Sass
Created:
Modified:
The build will fail under either of the following conditions:
- Dart Sass is not installed
- Dart Sass is not used to transpile Sass to CSS
Sass
@use "sass:math";
.foo {
p {
font-size: math.div(36px, 2);
}
}
Transpiled to CSS using Dart Sass
.foo p {
font-size: 18px;
}