How can I remove the default underline in a Vaadin text field when it is used inside a Vaadin combo box?
Upon inspecting with dev tools, I found that a div
with attribute part="input-field"
is causing the underline. While setting display: none;
manually works in the browser, I am unable to target it using CSS code. I have tried the following approaches:
`[part="input-field"] {
display: none !important;
}
.vaadin-text-field-container [part="input-field"] {
display: none !important;
}`