-
Couldn't load subscription status.
- Fork 7
Open
Labels
Description
I have the following SCSS:
/// @group color-colors
/// @type Color
$yellow: #ffde17 !default;
/// @group color-theme-colors
/// @type Color
$warning: $yellow !default;
/// @group color-subject-status-colors
/// @type Color
/// @link needs-review
$subject-status-needs-review: $warning !default;
And this resolves to:
$yellow: #ffde17;
$warning: #ffde17;
$subject-status-needs-review: $yellow ;
It should go down until the value isn't a variable anymore