diff --git a/tailwind.config.js b/tailwind.config.js index aef4a61..90ba410 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -8,5 +8,18 @@ module.exports = { }, extend: {}, }, - plugins: [], + plugins: [ + function ({ addComponents }) { + addComponents({ + '.container': { + '@screen lg': { + maxWidth: '768px', + }, + '@screen xl': { + maxWidth: '768px', + }, + } + }) + } + ], } \ No newline at end of file