0

I have a Vaadin 14 app which creates an HTML page that contains multiple "

Screenshot from Chrome shows the relevant page section: enter image description here

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!

Mike Cooper
  • 1,065
  • 3
  • 13
  • 34

1 Answers1

1

This should work..

.vaadin-button-container::before { 
justify-content: flex-start; }

Please, remove space and try..

Shraddha
  • 791
  • 7
  • 13