Set max-width to 768px for all screens
This commit is contained in:
parent
5518553221
commit
27a39c27f7
|
@ -8,5 +8,18 @@ module.exports = {
|
||||||
},
|
},
|
||||||
extend: {},
|
extend: {},
|
||||||
},
|
},
|
||||||
plugins: [],
|
plugins: [
|
||||||
|
function ({ addComponents }) {
|
||||||
|
addComponents({
|
||||||
|
'.container': {
|
||||||
|
'@screen lg': {
|
||||||
|
maxWidth: '768px',
|
||||||
|
},
|
||||||
|
'@screen xl': {
|
||||||
|
maxWidth: '768px',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
],
|
||||||
}
|
}
|
Loading…
Reference in New Issue