mirror of
https://github.com/WhoIsFishie/Fishie-Honesty-UI.git
synced 2025-02-21 16:52:13 +00:00
22 lines
386 B
JavaScript
22 lines
386 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
padding: '1.25em',
|
|
screens:{
|
|
'xl': '1200px',
|
|
'2xl': '1200px',
|
|
},
|
|
},
|
|
extend: {},
|
|
fontFamily: {
|
|
signature: ['Bebas Neue','cursive']
|
|
}
|
|
},
|
|
plugins: [require('daisyui')],
|
|
}
|
|
|
|
|