codenco-dev / nova-grid-system

Nova grid system for Laravel Nova
80 stars 33 forks source link

Breaks with TabsOnEdit eminiarts/nova-tabs #14

Open cord opened 3 years ago

cord commented 3 years ago

Layout is broken in combination with

use TabsOnEdit

from https://novapackages.com/packages/eminiarts/nova-tabs

workaround for usage on detail view: use ->sizeOnDetail()

ghost commented 3 years ago

That's because there is another wrapper involved with the tabs. Adding:

.relationship-tabs-panel.flex {
    display: block;
}

// Trailing border removal
.relationship-tabs-panel .remove-bottom-border div:last-of-type {
    border-bottom: none;
}

Looks like a fix for this.