Tailwind 2.0.1 has a 2xl breakpoint set to 1536px. I would like to disable this breakpoint and set the max container width to the xl breakpoint. According to the docs, I can disable all responsive variants for the container, but I just want to disable this single breakpoint. Instead I have tried to disable the 2xl breakpoint by updating the Tailwind configuration as follows:
module.exports = {
theme: {
screens: {
'2xl': '1280px'
}
}
}
This does not work, nor do I think this would be correct when I only want to target a single class and a single breakpoint.