| 1234567891011 |
- @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());
|