12 lines
253 B
SCSS
12 lines
253 B
SCSS
|
@use '../mixins' as shape;
|
||
|
@use '@material/feature-targeting/feature-targeting';
|
||
|
|
||
|
@mixin test($query) {
|
||
|
.test {
|
||
|
@include shape.radius(1px 2px, true, $query: $query);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// This shouldn't output any CSS.
|
||
|
@include test(feature-targeting.any());
|