Implementing Slickgrid in React. Pagination displays dots over button. #486
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
These DOM elements are list-style-type: none; , maybe something like
.slick-pagination {
list-style-type: none;
} I don't have that problem and since you can't provide a way to replicate, so it's a bit hard for me to fix something that I can't replicate, you'll have to try a few things and see what works then possibly make a contribution. |
Beta Was this translation helpful? Give feedback.
-
@jsoques Thanks for the feedback |
Beta Was this translation helpful? Give feedback.
-
@jsoques I just released an official version of Slickgrid-React v2.0.0 and also added a fully working Live Demo 🚀 |
Beta Was this translation helpful? Give feedback.
These DOM elements are
list-style-type: none;
, maybe something likeI don't have that problem and since you can't provide a way to replicate, so it's a bit hard for me to fix something that I can't replicate, you'll have to try a few things and see what works then possibly make a contribution.