CoolFace
Apppublic

ERROR418/lora-studio

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
tailwind.config.js17 linesDownload Raw Back to root
1/** @type {import('tailwindcss').Config} */2export default {3  content: ['./src/**/*.{html,js,svelte,ts}'],4  theme: {5    fontFamily: {6      sans: ['DM Sans', 'IBM Plex Mono'],7    },8    extend: {9      screens: {10        '3xl': '1920px',11      }12    },13  },14  plugins: [],15}16 17