gradio/.config/tailwind.config.cjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
185 B
JavaScript
Raw Normal View History

2022-02-25 20:24:32 +08:00
module.exports = {
content: [
"./src/**/*.{html,js,svelte,ts}",
"**/@gradio/**/*.{html,js,svelte,ts}"
],
theme: {
extend: {}
},
plugins: [require("@tailwindcss/forms")]
2022-02-25 20:24:32 +08:00
};