Semantic-UI icon indicating copy to clipboard operation
Semantic-UI copied to clipboard

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

Open bloodteller123 opened this issue 3 years ago • 1 comments

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?

bloodteller123 avatar Aug 08 '22 20:08 bloodteller123

I override the results container:

.ui.search .results {
    overflow-y: auto;
    max-height: 70vh;
}

GammaGames avatar Aug 09 '22 15:08 GammaGames

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

bloodteller123 avatar Aug 11 '22 15:08 bloodteller123