Set max-width to 768px for all screens

This commit is contained in:
ekzyis 2024-07-10 07:35:07 +02:00
parent 5518553221
commit 27a39c27f7
1 changed files with 14 additions and 1 deletions

View File

@ -8,5 +8,18 @@ module.exports = {
},
extend: {},
},
plugins: [],
plugins: [
function ({ addComponents }) {
addComponents({
'.container': {
'@screen lg': {
maxWidth: '768px',
},
'@screen xl': {
maxWidth: '768px',
},
}
})
}
],
}