Skip to content
Snippets Groups Projects
tailwind.config.js 249 B
Newer Older
  • Learn to ignore specific revisions
  • module.exports = {
      prefix: 'tw-',
      future: {
        removeDeprecatedGapUtilities: true,
      },
      theme: {
        screens: {
          'sm': '576px',
          'md': '768px',
          'lg': '992px',
          'xl': '1200px',
        }
      },
      variants: {},
      plugins: [],
    
    }