grass/.github/ISSUE_TEMPLATE/incorrect-sass-output.md

31 lines
412 B
Markdown
Raw Normal View History

2020-04-19 22:31:59 -04: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
---
**Failing Sass**:
2020-04-19 22:31:59 -04:00
```
a {
color: red;
}
```
<!-- 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;
}
```