grapesjs-parser-postcss
grapesjs-parser-postcss copied to clipboard
nested rule parsing
When there is a nested add rules, current parser return undefined: undefined.
example:
@page Normal {
size: 21.0cm 29.7cm;
margin: 2.5cm;
@top-left {
content: "@top-left";
background-color: orange;
padding: 10px;
border: 2px solid blue;
}
}
(in this example @top-left will be undefined.
Also, in grapes js there is change for handling multiple and nested at rules.