Files
minne/tailwind.config.js
2025-02-06 08:20:36 +01:00

35 lines
637 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./templates/**/*',
'!./templates/email/**/*'
],
theme: {
container: {
padding: {
DEFAULT: '10px',
sm: '2rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem',
},
},
extend: {
fontFamily: {
satoshi: ['Satoshi', 'sans-serif'],
},
typography: {
DEFAULT: {
css: {
maxWidth: '90ch', // Override max-width for all prose instances
},
},
},
},
},
daisyui: {
themes: ["light", "dark"],
},
}