personal-website/tailwind.config.js

22 lines
317 B
JavaScript
Raw Normal View History

2024-04-11 11:53:39 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
2024-04-12 18:27:54 +00:00
extend: {
container: {
center: true
}
},
2024-04-11 11:53:39 +00:00
container: {
2024-04-12 18:27:54 +00:00
padding: {
DEFAULT: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem'
}
2024-04-11 11:53:39 +00:00
}
},
plugins: []
};