awzx
awzx

Reputation: 1033

Activating Scrolling in React Autosuggest

How to activate scrolling using React Autosuggest (like the fourth example http://react-autosuggest.js.org/) ?

I can't get the option to do that in Documentation.

Upvotes: 6

Views: 3935

Answers (1)

awzx
awzx

Reputation: 1033

Actually, it was quite straight-forward :

.react-autosuggest__suggestions-list
{
  max-height: 200px;
  overflow-y: auto;
}

Defining a static height and adding overflow-y to auto was the solution to my problem.

Upvotes: 15

Related Questions