I have my react app inside which i want to use vaadin-date-picker
(v. 4.0.5
).
I want to change some of the date pickers in a way that they would be above my modal by changing z-index
to 1100 (for example)
and some to stay at 200.
In some examples, people put <style>
tag inside
<vaadin-date-picker></vaadin-date-picker>
But react is not recognizing <style>
attribute inside render function.
I can set class for
<vaadin-date-picker class='my-class'>
but it only changes control itself and not the backdrop part. Is there a way to change styles of some web components inside react app?