feature-targeting-any.test.scss 355 B

12345678910111213
  1. @use "../mixins" as touch-target;
  2. @use "@material/feature-targeting/functions" as feature;
  3. @mixin test($query) {
  4. .test {
  5. @include touch-target.wrapper($query: $query);
  6. @include touch-target.touch-target($query: $query);
  7. @include touch-target.margin(0, $query: $query);
  8. }
  9. }
  10. // This shouldn't output any CSS.
  11. @include test(feature.any());