mirror of
https://github.com/perstarkse/minne.git
synced 2026-01-18 07:56:44 +01:00
35 lines
637 B
JavaScript
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"],
|
|
},
|
|
}
|
|
|