I have a Vaadin 14 app which creates an HTML page that contains multiple "
Screenshot from Chrome shows the relevant page section:
I've tried this with and without the "::before":
.vaadin-button-container ::before {
justify-content: left !important;
}
I have also tried
.vaadin-button-container::before {
justify-content: left !important;
}
According to Chrome dev mode this style is never applied to the vaadin-button-container.
This css selector stuff is driving me nuts!