link
tailwindcss/custom-spacing

Custom Spacing

Add custom spacing scale

customization
spacing

Command

Examples

Add extra large spacing sizes

// tailwind.config.js
  module.exports = {
    theme: {
      extend: {
        spacing: {
          '128': '32rem',
          '144': '36rem'
        }
      }
    }
  }