Skip to content

Instantly share code, notes, and snippets.

@polarbirke
Created February 14, 2021 16:38
Show Gist options
  • Save polarbirke/3341a72deb8cb798ed1054d9f1f59172 to your computer and use it in GitHub Desktop.
Save polarbirke/3341a72deb8cb798ed1054d9f1f59172 to your computer and use it in GitHub Desktop.

Revisions

  1. polarbirke created this gist Feb 14, 2021.
    5 changes: 5 additions & 0 deletions input.scss
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    body .foo {
    & + & {
    color: blue;
    }
    }
    3 changes: 3 additions & 0 deletions output.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,3 @@
    body .foo + body .foo {
    color: blue;
    }
    9 changes: 9 additions & 0 deletions settings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    {
    "sass": {
    "compiler": "dart-sass/1.26.11",
    "extensions": {},
    "syntax": "SCSS",
    "outputStyle": "expanded"
    },
    "autoprefixer": false
    }