gradio/website/homepage/tailwind.config.js
aliabid94 b4d9825409
Website: WIP (#328)
Ported gradio website into gradio repository, now launched as a docker service from gradio/website
2021-12-13 22:02:19 -08:00

29 lines
579 B
JavaScript

module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
typography: {
DEFAULT: {
css: {
code: {
fontWeight: 'normal',
backgroundColor: 'whitesmoke',
'&:before': {
content: "none !important",
},
'&:after': {
content: "none !important",
},
},
},
},
}
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/typography")]
}