AAAARRRGGHHHH!!!
Found it!
I have placed my own CSS rules beheind the closing “}” in the scss file.
Wrong:
[code]
@mixin vaadintest {
@include chameleon;
// Insert your own theme rules here
}
.dfFontTitle.v-label {
font-size: 20px;
border: red solid 1px;
}
[/code]But correct is this:
[code]
@mixin vaadintest {
@include chameleon;
// Insert your own theme rules here
.dfFontTitle.v-label {
font-size: 20px;
border: red solid 1px;
}
}
[/code]Found this while creating a new project for testing your hint.
Thanks Joacim for your support!
Steffen