mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
f2d71abe88
* redesign forms * finalise forms * upload components * fix CSS conflicts * abstract block + update image * restyle modify buttons * add file, audio, video * revert example * address comments
23 lines
409 B
JavaScript
23 lines
409 B
JavaScript
const production = !process.env.ROLLUP_WATCH;
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{html,js,svelte,ts}",
|
|
"**/@gradio/**/*.{html,js,svelte,ts,css}"
|
|
],
|
|
|
|
theme: {
|
|
extend: {},
|
|
fontFamily: {
|
|
mono: ["monospace"],
|
|
sans: ["IBM Plex Sans", "system-ui"]
|
|
}
|
|
},
|
|
mode: "jit",
|
|
darkMode: "class", // or 'media' or 'class'
|
|
|
|
variants: {
|
|
extend: {}
|
|
},
|
|
plugins: [require("@tailwindcss/forms")]
|
|
};
|