Reputation: 33581
I need to slightly tweak the Valo theme for our Vaadin project. When I try to follow the vaadin documentation here I see this...
Essentially the .scss file for my new custom theme cannot find "valo" which makes sense, I never added a bunch of .scss files that are the "valo" source. Am I missing a step? Do I need to download the Valo sources and dump them into my java project? Do I need to add a maven dependency?
Upvotes: 4
Views: 283
Reputation: 2843
Do you include the file anywhere. Because if you don't you would need use ".ethortheme" instead of "@mixin ethortheme". @mixin is used when you want to @include the block somewhere.
There is also a description in the vaadin documentation how to extend the valo theme.
https://vaadin.com/book/vaadin7/-/page/themes.valo.html#themes.valo.use
Upvotes: 1