-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (53 loc) · 1016 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
53 lines (53 loc) · 1016 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* eslint-disable */
module.exports = {
purge: {
content: ["./src/**/*.tsx", "./public/index.html"],
},
darkMode: false, // or 'media' or 'class'
theme: {
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
},
extend: {
height: {
"screen-1/2": "50vh",
"screen-1/3": "33vh",
"screen-1/4": "25vh",
"screen-3/4": "75vh",
},
fontFamily: {
"sans": [
"Mulish",
"Inter",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"Helvetica",
"Arial",
"sans-serif",]
},
colors: {
primary: {
"DEFAULT": "#000000"
}
},
animation: {
fade: 'fadeIn linear 0.3s'
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
}
}
},
},
variants: {
extend: {},
},
plugins: [],
};