A useful component for when you have two full width columns but want to keep your text in both to be in the max width of the page.
Helpful if you have a layout like this for example.
plugins: [
...other plugins,
require('tailwindcss-half-container')({
// center: false,
// padding: 0
})
]
<div class="flex w-full">
<div class="half-container"></div>
<div class="half-container--end"></div>
</div>