Skip to content

Instantly share code, notes, and snippets.

@coogie
Created September 26, 2023 13:57
Show Gist options
  • Save coogie/9617f10b6390738be3c86128978b715a to your computer and use it in GitHub Desktop.
Save coogie/9617f10b6390738be3c86128978b715a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
$something: #900;
.foo {
background: var(--bg, $something);
}
.interpolated {
--bg: #{$something};
}
.noInterpolated {
--bg: $something;
}
.foo {
background: var(--bg, #900);
}
.interpolated {
--bg: #900;
}
.noInterpolated {
--bg: $something;
}
{
"sass": {
"compiler": "dart-sass/1.32.12",
"extensions": {},
"syntax": "SCSS",
"outputStyle": "expanded"
},
"autoprefixer": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment