grass/.github/ISSUE_TEMPLATE/incorrect-sass-output.md
Connor Skees ffaee04613
rewrite parsing, evaluation, and serialization (#67)
Adds support for the indented syntax, plain CSS imports, `@forward`, and many other previously missing features.
2022-12-26 15:33:04 -05:00

412 B

name: Incorrect Sass Output about: grass and dart-sass differ in output or grass reports and error for a valid style sheet title: '' labels: bug assignees: connorskees

Failing Sass:

a {
  color: red;
}

grass Output:

a {
  color: red;
}

dart-sass Output:

a {
  color: red;
}