-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (46 loc) · 996 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
screens: {
'xs': '320px',
'sm': '375px',
'md': '768px',
'lg': '1024px',
'xl': '1440px',
'2xl': '1920px',
},
fontFamily: {
'mono': ['Space Mono', 'monospace'],
'sans': ['Space Mono', 'monospace'],
},
spacing: {
'18': '4.5rem',
'22': '5.5rem',
'30': '7.5rem',
},
fontSize: {
'xxs': '0.625rem',
'tiny': '0.75rem',
'base-mobile': '0.875rem',
'base': '1rem',
},
maxWidth: {
'screen-xs': '320px',
'screen-sm': '375px',
'screen-md': '768px',
'screen-lg': '1024px',
'screen-xl': '1440px',
'screen-2xl': '1920px',
},
padding: {
'safe': 'env(safe-area-inset-bottom)',
},
},
},
plugins: [],
}