36 lines
635 B
JavaScript
36 lines
635 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
export default {
|
||
|
content: [
|
||
|
"./src/**/*.rs"
|
||
|
],
|
||
|
corePlugins: {
|
||
|
container: false
|
||
|
},
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [
|
||
|
function({ addComponents }) {
|
||
|
addComponents({
|
||
|
'.container': {
|
||
|
maxWidth: '95%',
|
||
|
margin: "auto",
|
||
|
'@screen sm': {
|
||
|
maxWidth: '640px',
|
||
|
},
|
||
|
'@screen md': {
|
||
|
maxWidth: '768px',
|
||
|
},
|
||
|
'@screen lg': {
|
||
|
maxWidth: '1024px',
|
||
|
},
|
||
|
'@screen xl': {
|
||
|
maxWidth: '1280px',
|
||
|
},
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
],
|
||
|
}
|
||
|
|