Fluent UI Listbox - Disable black border on mouse down

69 Views Asked by At

I'm using the Listbox from the Fluent UI Web Components, example here

What I don't like is that when you press down the mouse, it shows a thick black border, see screenshot: enter image description here

How can I disable that? I've tried setting a border on the fluent-listbox, no luck.

1

There are 1 best solutions below

0
On

Upon further investigation, found the solution with this CSS:

fluent-listbox {
  outline: 0;
}