1.0.0 • Published 6 years ago

tailwindcss-half-container v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

Tailwindcss Half Container Component

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.

Example Layout

How To Use

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>