link
tailwindcss/custom-breakpoints

Custom Breakpoints

Define custom screen sizes

responsive
breakpoints

Command

Examples

Custom screen sizes

// tailwind.config.js
  module.exports = {
    theme: {
      screens: {
        'tablet': '640px',
        'laptop': '1024px',
        'desktop': '1280px',
      }
    }
  }