[Vuejs]-Vue + Vuetify Chrome visual glitches

0👍

The main search input is a vuetify v-combobox control. I’ve some custom styling on this control that sets a fieldset (part of the control’s rendered HTML) to have a white background. Here’s the style in it’s entirety:

.smc-textfield-tall fieldset {
  background-color: #fff;
}

Removing this causes the visual glitch to go away. I have no idea why this would cause the glitch – there has to me some other styling (whether custom or part of vuetify) that in combination with this simple background colour causes this behavior.

I’ll be digging into it some more.

Leave a comment