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

30 lines
324 B
Markdown
Raw Normal View History

2020-04-19 22:31:59 -04:00
---
name: Incorrect SASS Output
about: There exists a differential between the output of grass and dart-sass
title: ''
labels: bug
assignees: connorskees
---
**Minimal Reproducible Example**:
```
a {
color: red;
}
```
**`grass` Output**:
```
a {
color: red;
}
```
**`dart-sass` Output**:
```
a {
color: red;
}
```