-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (39 loc) · 878 Bytes
/
tailwind.config.js
File metadata and controls
40 lines (39 loc) · 878 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
backgroundImage: {
'map': "url('./assets/map.svg')",
},
backgroundSize: {
'55%': '55%',
},
"fontFamily": {
"porter-sans-block": "porter-sans-block",
"kode": ['"Kode Mono", monospace'],
"blanka":"blanka",
"diplomata":['"Diplomata", serif'],
"dm-serif-display":['"DM Serif Display", serif'],
"dm-sans":['"DM Sans", serif']
},
perspective: {
300: '300px',
},
keyframes:{
'border-spin':{
"100%":{
transform:'rotate(-360deg)'
},
}
},
animation:{
'border-spin': 'border-spin 7s linear infinite'
}
}
},
plugins: [],
}