diff options
Diffstat (limited to 'vanilla/node_modules/css-tree/cjs/syntax/atrule/media.cjs')
| -rw-r--r-- | vanilla/node_modules/css-tree/cjs/syntax/atrule/media.cjs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/vanilla/node_modules/css-tree/cjs/syntax/atrule/media.cjs b/vanilla/node_modules/css-tree/cjs/syntax/atrule/media.cjs new file mode 100644 index 0000000..5db3439 --- /dev/null +++ b/vanilla/node_modules/css-tree/cjs/syntax/atrule/media.cjs @@ -0,0 +1,16 @@ +'use strict'; + +const media = { + parse: { + prelude() { + return this.createSingleNodeList( + this.MediaQueryList() + ); + }, + block(nested = false) { + return this.Block(nested); + } + } +}; + +module.exports = media; |
