Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React virtualized - Padding bottom on List

I was wondering if there is any way to add a padding bottom at the end of the list. I need this because I have a material floating button over the list, at the bottom. So if the user goes to the end of the list, that padding will save the last item to be covered from the button.

thankyou

like image 872
Ayoze Barrera Avatar asked Jun 09 '26 13:06

Ayoze Barrera


1 Answers

Its not a padding, but you could put a margin botton to the div that contains all the items Something like that:

.ReactVirtualized__Grid__innerScrollContainer {
    margin-bottom: 100px;
}
like image 106
Jesus Avatar answered Jun 12 '26 03:06

Jesus