Hi,
when I define sass variables in a file test.scss and include it in mytheme.scss file they are not resolved.
This used to work in vaadin 7.1.15.
Example mytheme.scss file:
[code]
@import “test.scss”;
@mixin mytheme {
@include test;
.test {
color: $testcolor;
}
}
[/code]test.scss file:
@mixin test {
$testcolor: #000000;
}
will create styles.css with
.mytheme .test {
color: $testcolor;
}
Will this be fixed soon?
Is there another way to define global variables in separate files?