-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (54 loc) · 926 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
screens: {
xs: '480px',
},
flex: {
2: '2 2 0%',
3: '3 3 0%',
4: '4 4 0%',
5: '5 5 0%',
6: '6 6 0%',
full: '0 1 101% ',
},
gridRow: {
'span-7': 'span 7 / span 7',
'span-8': 'span 8 / span 8',
'span-9': 'span 9 / span 9',
},
borderRadius: {
'lg': '0.5rem',
'lg-px': `calc(0.5rem - 1px)`,
},
opacity: {
3: '0.03',
},
colors: {
gray: {
75: '#F6F7F9',
925: '#0A101D',
},
},
spacing: {
'0.2f': '0.050em',
'0.5f': '0.125em',
'1f': '0.25em',
'2f': '0.5em',
'3f': '0.75em',
'4f': '1em',
'5f': '1.25em',
'6f': '1.5em',
'7f': '1.75em',
'8f': '2em',
'9f': '2.25em',
'10f': '2.5em',
'11f': '2.75em',
'12f': '3em',
},
},
},
plugins: [],
}