我已经从create nuxt-app安装了@nuxtjs/tailwindcss
,我用我的值修改了tailwind.config.js
文件:
module.exports = {
important: true,
theme: {
theme: {
extend: {
fontFamily: {
one: ["Arial", "Poppins", "Raleway"],
two: ["Muli", "Open Sans"]
},
screens: {
xll: "1400px"
}
}
}
},
variants: {},
plugins: []
};
当我将font-one
类应用于元素时,此配置不起作用,什么也没有发生
编辑:https://codesandbox.io/s/nuxt-tailwindcss-bhc5n
有人可以帮我吗?感谢您的回复
您的配置中有两个“主题”。这就是为什么它不起作用。
theme: {
theme: {