Html – How to get child div fill the whole available space, when parent is defined as `mx-auto` with Vue and tailwind
I apologize if this is something very simple and obvious, new to Vue/tailwind. I have a parent template like this: <template> <div class="mx-auto mt-4 max-w-3xl"> <slot></slot> </div> </template> There are items above and below this template. Then one of the…