feature-targeting-any.test.scss 236 B

1234567891011
  1. @use "../mixins" as theme;
  2. @use "@material/feature-targeting/functions" as feature;
  3. @mixin test($query) {
  4. .test {
  5. @include theme.core-styles($query: $query);
  6. }
  7. }
  8. // This shouldn't output any CSS.
  9. @include test(feature.any());