Semantic-Org / Semantic-UI

Semantic is a UI component framework based around useful principles from natural language.
http://www.semantic-ui.com
MIT License
51.07k stars 4.96k forks source link

Is there a way to allow scrollable component in results from Search module? #7086

Closed bloodteller123 closed 1 year ago

bloodteller123 commented 1 year ago

For example, if the search returns 10 results, instead of displaying all 10 results at the same time, could we allow user to scroll in the results dropdown (initially X are showed) to see the next X +n results?

GammaGames commented 1 year ago

I override the results container:

.ui.search .results {
    overflow-y: auto;
    max-height: 70vh;
}
bloodteller123 commented 1 year ago

Thank you! That's what I'm looking for