-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.15 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* eslint-disable @typescript-eslint/no-var-requires */
const defaultTheme = require("tailwindcss/defaultTheme");
// import defaultTheme from '"tailwindcss/defaultTheme"';
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
purge: ["./public/**/*.html", "./src/**/*.vue"], // 사용하지 않는 class들을 날려버린다.
theme: {
// screens: {
// lg: "1056px",
// },
lineClamp: {
1: 1,
2: 2,
3: 3,
},
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
},
extend: {
width: {
"320": "320px",
"1024": "1024px",
"1280": "1280px",
"2-division": "calc(100% / 2 - 1rem)",
"3-division": "calc(100% / 3 - 1rem)",
"4-division": "calc(100% / 4 - 1rem)",
},
},
},
variants: {},
plugins: [require("tailwindcss-line-clamp")],
spacing: {
// "1056": "1056px",
// md: '16px',
// lg: '24px',
// xl: '48px',
// 8: '8px',
// 9: '9px',
// 10: '10px',
// 12: '12px',
// 14: '14px',
// 15: '15px',
// 16: '16px',
// 18: '18px',
},
};