-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (43 loc) · 1.09 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,ts}",
"./node_modules/flowbite/**/*.js"
],
darkMode: 'class',
theme: {
extend: {
backgroundImage: {
"view-svg": "url('src/assets/svg/eye.svg')",
"code-svg": "url('src/assets/svg/code.svg')",
"gitHub-svg": "url('src/assets/svg/github.svg')",
"angularGif": "url('src/assets/assets/angularGf.webp')",
"close-svg": "url('src/assets/svg/icon-close.svg')",
"play-svg": "url('src/assets/svg/play.svg')",
},
gridTemplateColumns: {
'colResponsive': 'repeat(auto-fit, minmax(min(18.5rem, 100%), 1fr))',
},
backgroundSize: {
"min": '1.7rem',
"min-2": '1.5rem',
"base-size": '3rem'
},
keyframes: {
appearBox: {
'0%': { opacity: 0 },
'100%': { opacity: 1 },
}
},
animation: {
'appearBox': 'appearBox 0.2s linear forwards',
},
zIndex: {
'60': 60
}
},
},
plugins: [
require('flowbite/plugin')
],
}