lix-website/themes/lix/assets/bootstrap/node_modules/postcss-scss/lib/nested-declaration.js

13 lines
260 B
JavaScript
Raw Normal View History

2024-04-27 03:39:10 +00:00
const { Container } = require('postcss')
class NestedDeclaration extends Container {
constructor (defaults) {
super(defaults)
this.type = 'decl'
this.isNested = true
if (!this.nodes) this.nodes = []
}
}
module.exports = NestedDeclaration