mirror of
https://github.com/LBRYFoundation/components.git
synced 2025-08-23 09:37:31 +00:00
7 lines
227 B
SCSS
7 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;
|
|
}
|
|
}
|