-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (47 loc) · 1 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
const { join } = require('path')
const colors = require('./src/colors')
module.exports = {
content: [
join(__dirname, './pages/**/*.{js,ts,jsx,tsx}'),
join(__dirname, './src/**/*.{js,ts,jsx,tsx}'),
],
theme: {
colors,
extend: {
fontFamily: {
sans: [
'DM Sans',
'Calibri',
'Segoe UI',
'Roboto',
'Oxygen',
'Ubuntu',
'Cantarell',
'Fira Sans',
'Droid Sans',
'Helvetica Neue',
'Helvetica',
'Arial',
'sans-serif',
],
},
spacing: {
sidebarW: `420px`,
mapW: `calc(100vw - 420px)`,
},
animation: {
'fadein-delay-400': 'fadeIn 200ms ease-in-out 400ms 1 forwards',
},
keyframes: {
fadeIn: {
from: { opacity: 0 },
to: { opacity: 1 },
},
},
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/container-queries'),
],
}