-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
32 lines (32 loc) · 1.09 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/renderer/index.html', './src/renderer/src/**/*.{js,jsx,ts,tsx}'],
darkMode: 'class',
daisyui: {
themes: ['luxury']
},
theme: {
extend: {
gridTemplateColumns: {
'max-max': 'max-content max-content',
'max-max-max': 'repeat(3, max-content)',
'max-max-1fr': 'max-content max-content 1fr',
'max-max-1fr-max': 'max-content max-content 1fr max-content',
'max-max-1fr-max-max': 'max-content max-content 1fr max-content max-content',
'1fr-max': '1fr max-content',
'max-1fr': 'max-content 1fr',
'1fr-1fr-max': '1fr 1fr max-content',
'1fr-1fr-max-max': '1fr 1fr max-content max-content',
'max-max-max-max': `repeat(4, max-content)`
},
gridTemplateRows: {
'max-1fr-max': 'max-content 1fr max-content',
'max-1fr': 'max-content 1fr',
'1fr-max': '1fr max-content',
'max-max': 'max-content max-content',
'max-max-max': 'repeat(3, max-content)'
}
}
},
plugins: [require('daisyui')]
}