How to apply CSS to AutoComplete' List from rsuite component

821 Views Asked by At

I'm tryin to apply style to the list of this component from Rsuite:

https://rsuitejs.com/components/auto-complete#%3CAutoComplete%3E

I wanna set a max-height, and overflow.

At the moment I tried to set style={{maxHeight: 150px}} but it applies to the InputContainer not the List.

1

There are 1 best solutions below

5
On

You can target the popup list via css using the div.rs-picker-menu selector:

div.rs-picker-menu {
  max-height: 150px;
  overflow: scroll;
}

Sandbox Example