tailwindlabs / discuss

A place to ask questions, get help, or share what you've built with Tailwind CSS.
MIT License
171 stars 9 forks source link

'max-w-screen-xl' missing #409

Closed nicktc closed 4 years ago

nicktc commented 4 years ago

Hi,

I am playing for the first time with Tailwindcss in combination Sapper (not sure if relevant). In the Tailwindcss documentation the header has a class class 'max-w-screen-xl'. That class doesn't exist in my generated index.css. This is my tailwind.js file:

module.exports = { theme: { extend: {} }, variants: {}, plugins: [] }

So based on the defaultConfig on Tailwindcss this should all work. Not sure what I am missing here.

Thanks,

Nick

tlgreg commented 4 years ago

It's a custom value.

nicktc commented 4 years ago

Thanks!