Skip to content
Snippets Groups Projects
tailwind.config.js 488 B
Newer Older
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: [],
}