ffaee04613
Adds support for the indented syntax, plain CSS imports, `@forward`, and many other previously missing features.
31 lines
412 B
Markdown
31 lines
412 B
Markdown
---
|
|
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;
|
|
}
|
|
```
|
|
|
|
<!-- Showing output from both tools is optional, but does help in debugging -->
|
|
**`grass` Output**:
|
|
```
|
|
a {
|
|
color: red;
|
|
}
|
|
```
|
|
|
|
**`dart-sass` Output**:
|
|
```
|
|
a {
|
|
color: red;
|
|
}
|
|
```
|