forked from meSingh/git.wtf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
39 lines (35 loc) · 1.06 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
module.exports = {
theme: {
extend: {
boxShadow: {
theme: '0 1px 9px rgba(203, 208, 228, .19)'
},
fontFamily: {
brand: "'Open Sans', sans-serif"
},
fontSize: {
'7xl': '5rem',
'8xl': '6rem',
}
}
},
variants: {
margin: ['responsive', 'hover', 'focus']
},
plugins: [
require('tailwindcss-plugins/pagination')({
// Costumize the color only. (optional)
// color: colors['teal-dark'],
// Costumize styling using @apply. (optional)
wrapper: 'flex px-0 justify-between list-none',
link: 'bg-gray-200 py-3 px-8 block text-gray-600 no-underline',
linkHover: 'text-white bg-indigo-600'
// Costumize styling using CSS-in-JS. (optional)
// wrapper: {
// 'display': 'flex',
// '@apply px-0 justify-between list-none': {},
// }
}),
// ...
],
}