2020-04-19 22:31:59 -04:00
|
|
|
---
|
2022-12-26 15:33:04 -05:00
|
|
|
name: Incorrect Sass Output
|
|
|
|
about: `grass` and `dart-sass` differ in output or `grass` reports and error for a valid style sheet
|
2020-04-19 22:31:59 -04:00
|
|
|
title: ''
|
|
|
|
labels: bug
|
|
|
|
assignees: connorskees
|
|
|
|
|
|
|
|
---
|
|
|
|
|
2022-12-26 15:33:04 -05:00
|
|
|
**Failing Sass**:
|
2020-04-19 22:31:59 -04:00
|
|
|
```
|
|
|
|
a {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2022-12-26 15:33:04 -05:00
|
|
|
<!-- Showing output from both tools is optional, but does help in debugging -->
|
2020-04-19 22:31:59 -04:00
|
|
|
**`grass` Output**:
|
|
|
|
```
|
|
|
|
a {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**`dart-sass` Output**:
|
|
|
|
```
|
|
|
|
a {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
```
|