24 lines
448 B
JavaScript
24 lines
448 B
JavaScript
module.exports = {
|
|
content: [
|
|
'./_site/index.html', './_site/**/*.html',
|
|
'.eleventy.js',
|
|
],
|
|
theme: {
|
|
screens: {
|
|
'xs': '320px',
|
|
'sm': '640px',
|
|
'md': '768px',
|
|
'lg': '1024px',
|
|
},
|
|
backgroundSize: {
|
|
'auto': 'auto',
|
|
'cover': 'cover',
|
|
'contain': 'contain',
|
|
'105%': '105%',
|
|
}
|
|
},
|
|
plugins: [
|
|
require("@catppuccin/tailwindcss"),
|
|
require("tailwindcss-animated"),
|
|
],
|
|
}
|