My first time filing an open source issue, please go easy on me :).
Using cqfill with PostCSS, when i leave a whitespace between @container and (RULE), the generated CSS code works. But when I remove the whitespace
@container(min-width: 700px) {
.contained {
/* styles applied when a container is at least 700px */
}
}
which i think is valid, then the generated CSS become
@media--css-container and (min-width: 700px) {
...
}
The whitespace between @media and --css-container is gone and it does not work anymore.
Your thought on this ?
My first time filing an open source issue, please go easy on me :).
Using cqfill with PostCSS, when i leave a whitespace between
@containerand(RULE), the generated CSS code works. But when I remove the whitespacewhich i think is valid, then the generated CSS become
The whitespace between
@mediaand--css-containeris gone and it does not work anymore.Your thought on this ?