marp-team / marpit

The skinny framework for creating slide deck from Markdown
https://marpit.marp.app/
MIT License
964 stars 46 forks source link

Invalid scoping for `:root` selector #336

Closed yhatt closed 2 years ago

yhatt commented 2 years ago

Marpit v2.3.0 has invalid scoping for updated :root selector.

/* @theme theme */
:root {
  background: yellow
}
/* Bad */
div.marpit > section :where(section):not([\20 root]) {
  background: yellow;
}

/* Good */
div.marpit > :where(section):not([\20 root]) {
  background: yellow;
}