I'm trying to add some non-standard CSS @-rules from Prince XML in my Sass workflow, but can't find a way to do so.
Desired CSS output:
@page {
@bottom { ... };
...
}
This gives an Unclosed block error when included in Sass as such.
The following code compiles, but just ignores the entire block in the CSS output:
#{'@'}page {
#{'@'}bottom { ... };
...
}
Is there a way to do this?