28 lines
589 B
JavaScript
28 lines
589 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
// 添加自定义的断点
|
|
screens: {
|
|
md: '0px',
|
|
lg: '500px',
|
|
xk: '1366px',
|
|
x1k: '1920px',
|
|
x2k: '2560px',
|
|
x4k: '3840px',
|
|
},
|
|
//自定义宽度
|
|
width: {},
|
|
//自定义高度
|
|
height: {
|
|
200: '200px',
|
|
c150: 'calc(100% - 150px)',
|
|
c212: 'calc(100% - 212px)',
|
|
c282: 'calc(100% - 282px)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|