-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
106 lines (106 loc) · 2.74 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
screens: {
xs: '450px',
sm: '920px',
},
extend: {
colors: {
primary: '#1f4d80',
inactive: 'rgba(255, 255, 255, .4)',
gray: '#bbb',
neutral: {
100: '#eeeef7',
200: '#e5e7ef',
400: '#afb0be',
500: '#afb0be',
600: '#808191',
900: '#40414d',
},
brand: {
100: '#3c88cd',
},
},
borderWidth: {
1: '1px',
},
margin: {
72: '72px',
140: '140px',
},
width: {
'80%': '80%',
'1px': '1px',
'2px': '2px',
'5px': '5px',
90: '90px',
170: '170px',
200: '200px',
500: '300px',
},
minWidth: {
9: '2.25rem',
100: '100px',
140: '140px',
200: '200px',
700: '700px',
},
height: {
100: '100px',
200: '200px',
40: '40px',
225: '225px',
'5px': '5px',
'95vh': '95vh',
},
minHeight: {
220: '220px',
42: '42px',
},
maxHeight: {
550: '550px',
200: '200px',
},
maxWidth: {
120: '120px',
160: '160px',
170: '170px',
200: '200px',
350: '350px',
480: '480px',
500: '500px',
600: '600px',
700: '700px',
1200: '1200px',
},
lineHeight: {
100: '100px',
},
padding: {
18: '4.5rem',
160: '160px',
110: '110px',
'10px': '10px',
'7px': '7px',
},
borderRadius: {
8: '8px',
24: '24px',
},
translate: {
50: '50px',
'2/5': '40%',
},
gap: {
17: '3.25rem',
120: '120px',
},
gridTemplateColumns: {
teachers: 'repeat(auto-fill, minmax(140px, 1fr))',
},
},
},
plugins: [],
};