-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.js
72 lines (70 loc) · 1.26 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
const plugin = require("tailwindcss/plugin");
module.exports = {
purge: {
content: [
"./src/**/*.vue",
"./src/**/*.js",
// "./src/**/*.jsx",
// "./src/**/*.html",
// "./src/**/*.pug",
// "./src/**/*.md",
],
safelist: [
// "body",
// "html",
// "img",
// "a",
// "ol",
// "ul",
"g-image",
"g-image--lazy",
"g-image--loaded",
"bg-gray-700",
"bg-yellow-300",
"bg-yellow-500",
"bg-red-500",
"bg-red-700",
"bg-gray-200"
],
},
theme: {
fontFamily: {},
extend: {
colors: {
'jfrog-green': '#40BE46',
},
aspectRatio: {
'blog-image': '1.65',
},
},
},
variants: {
extend: {
display: ['first']
}
},
corePlugins: {
container: false
},
plugins: [
function ({ addComponents }) {
addComponents({
'.container': {
maxWidth: '100%',
'@screen sm': {
maxWidth: '600px',
},
'@screen md': {
maxWidth: '700px',
},
'@screen lg': {
maxWidth: '1000px',
},
'@screen xl': {
maxWidth: '1115px',
},
}
})
}
],
};