Semantic-UI
Semantic-UI copied to clipboard
Is there a way to allow scrollable component in results from Search module?
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?
I override the results container:
.ui.search .results {
overflow-y: auto;
max-height: 70vh;
}
Thank you! That's what I'm looking for