Skip to content

Commit

Permalink
🐛 Fix the custom proeprties test
Browse files Browse the repository at this point in the history
  • Loading branch information
DanPurdy committed Sep 2, 2017
1 parent 1eb2b5b commit 8d0ae41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/sass/no-color-literals.sass
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,5 @@ $hsla: hsla(40, 50%, 50%, .3)
color: rgba(shade($some-color), 0.5)

.color
border: 1px solid --white
color: rgba(--my-color, 0.5)
border: 1px solid var(--white)
color: rgba(var(--my-color), 0.5)
4 changes: 2 additions & 2 deletions tests/sass/no-color-literals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,6 @@ $black: #000;
}

.color {
border: 1px solid --white;
color: rgba(--my-color, 0.5);
border: 1px solid var(--white);
color: rgba(var(--my-color), 0.5);
}

0 comments on commit 8d0ae41

Please sign in to comment.