forked from yearn/ape-tax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
executable file
·42 lines (41 loc) · 1.31 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
const {join} = require('path');
module.exports = {
presets: [require('@yearn-finance/web-lib/tailwind.config.cjs')],
content: [
join(__dirname, 'pages', '**', '*.{js,jsx,ts,tsx}'),
join(__dirname, 'components', 'icons', '**', '*.{js,jsx,ts,tsx}'),
join(__dirname, 'components', 'logo', '**', '*.{js,jsx,ts,tsx}'),
join(__dirname, 'components', 'strategies', '**', '*.{js,jsx,ts,tsx}'),
join(__dirname, 'components', 'vaults', '**', '*.{js,jsx,ts,tsx}'),
join(__dirname, 'components', '**', '*.{js,jsx,ts,tsx}'),
join(__dirname, 'node_modules', '@yearn-finance', 'web-lib', 'components', '**', '*.{js,ts,jsx,tsx}'),
join(__dirname, 'node_modules', '@yearn-finance', 'web-lib', 'contexts', '**', '*.{js,ts,jsx,tsx}'),
join(__dirname, 'node_modules', '@yearn-finance', 'web-lib', 'icons', '**', '*.{js,ts,jsx,tsx}'),
join(__dirname, 'node_modules', '@yearn-finance', 'web-lib', 'utils', '**', '*.{js,ts,jsx,tsx}')
],
corePlugins: {
ringColor: false,
},
theme: {
extend: {
fontFamily: {
mono: ['IBM Plex Mono', 'monospace']
},
lineHeight: {
11: '3.25rem',
'120px': '120px'
},
fontSize: {
'xxs': '0.6rem',
'xs': '0.7rem',
'3xl': '2rem',
'7xl': '5rem',
'sm': '0.8rem',
}
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms')
],
};