Is there a way to update my Laravel pagination CSS to match my theme's CSS? I need help with this adjustment.
Here is the HTML for the theme's CSS:
<div class="row mt-5">
<div class="col text-center">
<div class="block-27">
<ul>
<li><a href="#"><</a></li>
<li class="active"><span>1</span></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li><a href="#">></a></li>
</ul>
</div>
</div>
</div>
And here is my current Laravel pagination, which retains its default CSS class:
{{ $projects->appends(request()->except('page'))->links() }}
I have provided images as well https://i.sstatic.net/S51aP.png. Please take a look at the theme and default CSS styles. How can I apply the theme CSS to my Laravel pagination elements? Thank you for your assistance.