-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
47 lines (46 loc) · 1.1 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
const plugin = require('tailwindcss/plugin');
module.exports = {
// mode: 'jit',
purge: { content: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'] },
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
minWidth: {
0: '0',
'1/5': '20%',
'2/5': '40%',
'1/2': '50%',
'3/5': '60%',
'4/5': '80%',
full: '100%',
},
maxWidth: {
'2/3': '66.666%',
'4/5': '80%',
},
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
},
},
},
variants: {
extend: {},
},
plugins: [
plugin(function ({ addVariant, e, postcss }) {
addVariant('firefox', ({ container, separator }) => {
const isFirefoxRule = postcss.atRule({
name: '-moz-document',
params: 'url-prefix()',
});
isFirefoxRule.append(container.nodes);
container.append(isFirefoxRule);
isFirefoxRule.walkRules((rule) => {
rule.selector = `.${e(
`firefox${separator}${rule.selector.slice(1)}`
)}`;
});
});
}),
],
};