Skip to content
Snippets Groups Projects
tailwind.config.js 457 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',
    
        },
        cursor: {
          auto: 'auto',
          default: 'default',
          pointer: 'pointer',
          wait: 'wait',
          text: 'text',
          move: 'move',
          'not-allowed': 'not-allowed',
          help: 'help'
    
        }
      },
      variants: {},
      plugins: [],
    
    }