Okipa / laravel-table

Generate tables from Eloquent models.
MIT License
532 stars 64 forks source link

Fix pagination link margin bottom #64

Closed mtvbrianking closed 3 years ago

mtvbrianking commented 3 years ago

The default mb-n3 pushes the margin down.

image

Removing it seems to fix the issue

image

Okipa commented 3 years ago

Hi @mtvbrianking, this behaviour seems to occur because you customized the pagination style.

Natively, the Bootstrap pagination class has a border-bottom: 1rem;. In order to counter this effet, the mb-n3 class application on the pagination container works great:

Capture d’écran 2020-12-09 à 18 27 06
mtvbrianking commented 3 years ago

My bad, Bootstrap lists have a default margin bottom

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

I had reset this in my project.