-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
41 lines (40 loc) · 1.08 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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
theme: {
extend: {
fontFamily: {
sans: [
'Inter',
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'Arial',
'sans-serif',
],
mono: ['"IBM Plex Mono"', 'monospace'],
},
boxShadow: {
'inner-lg': 'inset 0 4px 8px 0 rgba(0, 0, 0, 0.16)',
},
spacing: {
'2px': '2px',
'80': '20rem',
'100': '25rem',
},
maxHeight: {
...defaultTheme.spacing,
},
maxWidth: {
...defaultTheme.spacing,
},
borderWidth: {
'1': '1px',
},
},
},
variants: {
boxShadow: ['responsive', 'hover', 'focus', 'active', 'focus-visible'],
borderWidth: ['responsive', 'last'],
},
plugins: [],
}