-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (40 loc) · 1.16 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./cogip/tools/**/static/js/*.js",
"./cogip/tools/**/templates/*.html",
],
theme: {
extend: {
colors: {
"grey-color": "var(--grey-color)",
"red-cogip": "var(--red-cogip)",
"camp-1": "var(--color-camp-1)",
"camp-2": "var(--color-camp-2)",
"custom-button": "hsla(0, 0%, 30%, 0.56)",
},
height: {
"10p": "10%",
"minus-footer": "calc(100vh - 75px)",
},
fontSize: {
"1500p": "1500%",
},
transitionProperty: {
bottom: "bottom",
},
transitionDuration: {
400: "400ms",
},
zIndex: {
100: "100",
},
},
},
content: [
"./cogip/tools/**/static/js/*.js",
"./cogip/tools/**/templates/*.html",
],
safelist: ["bg-camp-1", "bg-camp-2", "border-camp-1", "border-camp-2"],
plugins: ["postcss-import", "tailwindcss", "autoprefixer"],
};