@tkh/tailwind-plugin-flex-basis

1.4.0 • Public • Published

@tkh/tailwind-plugin-flex-basis

Tailwindcss plugin for flex-basis css rules

Install

npm install @tkh/tailwind-plugin-flex-basis

Usage

Merge the plugin configuration with your tailwind.config.js

const pluginConfiguration = {
  theme: {
    'flex-basis': theme => ({
      '1': '100%',
      '2': '50%',
      '3': '33.333333%',
      '4': '25%',
      '5': '20%',
      '6': '16.666666%',
      '7': '14.285714%',
      '0': '12.5%',
    }),
  },
  variants: {
    'flex-basis': ['responsive'],
  },
  plugins: [require('./flex-basis.js')()],
}

Use together with .flex and .flex-wrap to create a responsive grid.

<div class="flex flex-wrap flex-basis-4">
  <div class="item"></div>
  <div class="item"></div>
  <div class="item"></div>
  <div class="item"></div>
</div>

Package Sidebar

Install

npm i @tkh/tailwind-plugin-flex-basis

Weekly Downloads

0

Version

1.4.0

License

MIT

Unpacked Size

4.91 kB

Total Files

7

Last publish

Collaborators

  • romain742
  • thierrywould