dash-table icon indicating copy to clipboard operation
dash-table copied to clipboard

Pagination styling

Open aboyher opened this issue 4 years ago • 1 comments

Feature request: Options or ability to more easily change the styling of the pagination controls. For instance, if the table is too close to another component, it wraps around onto a new line, or gets completely hidden. In most cases, I just want the controls smaller as a whole, but attempting this through css doesn't work (I've tried changing .previous-next-container, but the most I've been able to change is background color).

aboyher avatar Jul 29 '21 17:07 aboyher

Try changing the line-height of .previous-next-container to make it smaller. This is what I currently use:

.previous-next-container { padding: 3px; margin-top: 5px; line-height: 1; display: flex; justify-content: center; align-items: center; }

uns1 avatar Oct 26 '22 14:10 uns1