printer-notifications/node_modules/css-tree/lib/syntax/atrule/media.js

13 lines
262 B
JavaScript
Raw Permalink Normal View History

2023-11-13 21:10:04 +00:00
export default {
parse: {
prelude() {
return this.createSingleNodeList(
this.MediaQueryList()
);
},
block(isStyleBlock = false) {
return this.Block(isStyleBlock);
}
}
};