F
Filament10mo ago
trymedo

RelationManager width / colspan?

Is it possible to make a relation manager table only span 1 column rather than the default full width? I've been poking through the docs and code but can't find it. I'd like to have my game stats show next to the player relation manager
No description
2 Replies
johnnie_littleshoes
would like to know as well!
Aleved
Aleved4w ago
Looks like a custom page already? So I think you just want:
<div class="grid grid-cols-3 gap-4">
<div class="col-span-2">
<!-- players table -->
</div>
<div class="col-span-1">
<!-- game stats -->
</div>
</div>
<div class="grid grid-cols-3 gap-4">
<div class="col-span-2">
<!-- players table -->
</div>
<div class="col-span-1">
<!-- game stats -->
</div>
</div>

Did you find this page helpful?