UNPKG

565 BSCSSView Raw
1@use '../mixins' as typography;
2@use '@material/feature-targeting/feature-targeting';
3
4@mixin test($query) {
5 .test {
6 @include typography.core-styles($query: $query);
7 @include typography.base($query: $query);
8 @include typography.typography(button, $query: $query);
9 @include typography.overflow-ellipsis($query: $query);
10 @include typography.baseline($top: 0, $bottom: 0, $query: $query);
11 @include typography.text-baseline($top: 0, $bottom: 0, $query: $query);
12 }
13}
14
15// This shouldn't output any CSS.
16@include test(feature-targeting.any());