tailwindcss-grid icon indicating copy to clipboard operation
tailwindcss-grid copied to clipboard

Brings grid support to Tailwind CSS

Results 2 tailwindcss-grid issues
Sort by recently updated
recently updated
newest added

Added the ability to also define the number of rows within the `grids` setting

Consider these options ```js module.exports = { // ... plugins: [ require('tailwindcss-grid')({ grids: ['2','3','12'] }) ] ``` And this snippet from `index.js` ```js ..._.range(1, _.max(grids) + 1).map(span => ({ [`.col-span-${span}`]:...