1
1
Fork 0
portfolio/tailwind.config.js
2025-04-18 21:38:14 -06:00

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"),
],
}