Explanation
Extends the default spacing scale with custom values
Examples
Add extra large spacing sizes
// tailwind.config.js
module.exports = {
theme: {
extend: {
spacing: {
'128': '32rem',
'144': '36rem'
}
}
}
}