-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
59 lines (57 loc) · 928 Bytes
/
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
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx, html}', './node_modules/tw-elements/dist/js/**/*.js'],
theme: {
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
},
fontFamily: {
sans: ['Graphik', 'sans-serif'],
},
fontSize: {
xs: [
'10px',
{
lineHeight: '20px',
letterSpacing: '-0.01em',
fontWeight: '500',
},
],
sm: [
'13px',
{
lineHeight: '18px',
letterSpacing: '-0.01em',
fontWeight: '400',
},
],
base: [
'15px',
{
lineHeight: '20px',
letterSpacing: '0',
fontWeight: '400',
},
],
xl: [
'18px',
{
lineHeight: '20px',
letterSpacing: '-0.01em',
fontWeight: '500',
},
],
'2xl': [
'30px',
{
lineHeight: '32px',
letterSpacing: '-0.01em',
},
],
},
extend: {},
},
plugins: [require('tw-elements/dist/plugin')],
};