-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
50 lines (49 loc) · 986 Bytes
/
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
44
45
46
47
48
49
50
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
navy: {
DEFAULT: "#324353",
},
orange: {
200: "#feeee7",
DEFAULT: "#f75d20",
600: "#e04406",
},
},
},
},
variants: {},
plugins: [
function ({ addComponents, addUtilities }) {
addComponents({
".container": {
maxWidth: "100%",
"@screen sm": {
maxWidth: "640px",
},
"@screen md": {
maxWidth: "768px",
},
"@screen lg": {
maxWidth: "1024px",
},
"@screen xl": {
maxWidth: "1024px",
},
},
});
addUtilities(
{
".px-00": {
paddingLeft: 0,
paddingRight: 0,
},
},
["responsive"]
);
},
],
};