lora-studio / tailwind.config.js
enzostvs's picture
enzostvs HF staff
user is logged in front check
a1d7896
raw
history blame
No virus
280 Bytes
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
fontFamily: {
sans: ['DM Sans', 'IBM Plex Mono'],
},
extend: {
screens: {
'3xl': '1920px',
}
},
},
plugins: [],
}