You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
647 B
31 lines
647 B
/* |
|
* @Author: October 382756525@qq.com |
|
* @Date: 2022-07-29 15:25:16 |
|
* @LastEditors: October 382756525@qq.com |
|
* @LastEditTime: 2022-08-07 20:58:59 |
|
* @Description: tailwind配置文件 |
|
* |
|
*/ |
|
/** @type {import('tailwindcss').Config} */ |
|
module.exports = { |
|
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"], |
|
theme: { |
|
extend: { |
|
width: { |
|
base: "12rem", |
|
}, |
|
}, |
|
}, |
|
variants: { |
|
extend: {}, |
|
}, |
|
plugins: [ |
|
function ({ addBase, theme }) { |
|
addBase({ |
|
".el-button": { |
|
"background-color": "var(--el-button-bg-color,val(--el-color-white))", |
|
}, |
|
}); |
|
}, |
|
], |
|
};
|
|
|