houdunren-vue
Version:
后盾人前端脚手架
30 lines (28 loc) • 596 B
JavaScript
const { default: plugin } = require('tailwindcss')
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
width: {
page: '1450px',
},
colors: {
'hd-blue': '#62569F',
},
screens: {},
},
},
plugins: [
function ({ addBase, theme }) {
addBase({
'.el-button': {
'background-color': 'var(--el-button-bg-color,val(--el-color-white))',
},
})
},
require('@tailwindcss/line-clamp'),
],
variants: {
lineClamp: ['responsive', 'hover'],
},
}