-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (39 loc) · 1.01 KB
/
Copy pathtailwind.config.js
File metadata and controls
41 lines (39 loc) · 1.01 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontSize: {
'2xs': '.625rem',
},
backgroundImage: {
'helios-logo': "url('/images/helioslogo.png')",
},
animation: {
slideRight: "slideRight 0.5s ease-in-out",
},
keyframes: {
'animateWave': {
'0%': {'background-position-x': '1000px'},
'100%': {'background-position-x': '0px'}
},
'animateWave2': {
'0%': {'background-position-x': '0px'},
'100%': {'background-position-x': '1000px'}
},
"slideRight": {
"0%": { transform: "translateX(-100%)", opacity: 0 },
"100%": { transform: "translateX(0)", opacity: 1 },
}
},
},
},
plugins: [],
darkMode: 'class'
}