8 lines
227 B
SCSS
8 lines
227 B
SCSS
|
// Use CSS variables without upsetting Sass-Lint
|
||
|
// https://github.com/sasstools/sass-lint/issues/1161#issuecomment-390537190
|
||
|
@mixin root-prop($prop: null, $value: null) {
|
||
|
@if ($prop and $value) {
|
||
|
#{$prop}: $value;
|
||
|
}
|
||
|
}
|