-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
50 lines (48 loc) · 1.04 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
// fontFamily: {
// 'sans': ['Poppins', 'sans-serif'],
// },
minWidth: {
'100': '100px',
'150': '150px',
'200': '200px',
},
rotate: {
'120': '120deg',
'240': '240deg',
},
scale: {
'0': '0',
'25': '.25',
'50': '.5',
'75': '.75',
'90': '.9',
'95': '.95',
'100': '1',
'102': '1.02',
'103': '1.03',
'105': '1.05',
'110': '1.1',
'125': '1.25',
'150': '1.5',
'200': '2',
},
screens: {
'sm': { 'min': '0px', 'max': '547px' },
'md': { 'min': '548px', 'max': '767px' },
'lg': { 'min': '768px', 'max': '1023px' },
'xl': { 'min': '1024px', 'max': '1679px' },
'2xl': { 'min': '1680px' },
},
},
},
variants: {
extend: {
},
},
plugins: [],
}