12 lines
233 B
SCSS
12 lines
233 B
SCSS
|
@use '../theme';
|
||
|
@use '@material/feature-targeting/feature-targeting';
|
||
|
|
||
|
@mixin test($query) {
|
||
|
.test {
|
||
|
@include theme.core-styles($query: $query);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// This shouldn't output any CSS.
|
||
|
@include test(feature-targeting.any());
|