Laravel Nova problem with pagination style
When I use "links" type of pagination, the buttons on the pagination panel become gray. However, pagination of the type "simple" is in color of the brand. This is what html of the button for an unselected page looks like.
<button class="border-r border-gray-200 dark:border-gray-700 h-9 min-w-9 px-2 focus:outline-none focus:bg-gray-50 hover:bg-gray-50 dark:hover:bg-gray-700">1</button>
And here is the button for the selected page. Both buttons are in tailwind text-gray-500 color wich makes using pagination inconvenient.
<button class="border-r border-gray-200 dark:border-gray-700 h-9 min-w-9 px-2 focus:outline-none focus:bg-gray-50 hover:bg-gray-50 dark:hover:bg-gray-700 text-gray-500" dusk="page:2">2</button>
There aren't even classes that could be used for custom css. I haven’t seen anyone else with the pagination panel looking the same way. Any tips?
Please or to participate in this conversation.