peteboere / css-crush

CSS preprocessor.
http://the-echoplex.net/csscrush
MIT License
537 stars 51 forks source link

Nesting set inside ifset #85

Open tealborder opened 6 years ago

tealborder commented 6 years ago

My php file I pass a variable such as:

$userTheme = 'blueTheme';
'vars' => [$userTheme => true]

Can't seem to do:

@ifset blueTheme {
    @set mainColor #0000ff;
}
@ifset purpleTheme {
    @set mainColor #7a00e1;
}

p {
    background-color: $(mainColor);
}

If I run this, the p background color is always set as the last defined @set mainColor