Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Vaadin, Valo , exclude border around dashboard page
I am working with Vaadin 7.6 and Valo theme and have problem with excluding border-left setting for valotheme .
In my application , border left around dashboard is defined on this way :
.valotheme { border-left: 1px solid #414141;}
I want to achive this
.valotheme { /*border-left: 1px solid #414141; */ }
How I can do that;
thanks for any help.
Have you tried giving it e.g. border-left: none; instead of just commenting it out? If that line overrides anything else, just commenting it out will give you that overridden version instead of nothing.
Anna
I solved my problem . Border-left settings was writen out of any style definition in one place in my scss file .
when I remove that everuthing was ok.
thanks so much