-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
47 lines (47 loc) · 1.07 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
/** @type {import("tailwindcss").Config} */
module.exports = {
darkMode: 'class',
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./common/components/**/*.{js,ts,jsx,tsx}',
'./modules/**/*.{js,ts,jsx,tsx}',
],
theme: {
// https://tailwindcss.com/docs/screens#max-width-breakpoints
screens: {
'2xl': { max: '1535px' },
xl: { max: '1279px' },
lg: { max: '1023px' },
md: { max: '767px' },
sm: { max: '639px' },
'>2xl': { min: '1536px' },
'>xl': { min: '1280px' },
'>lg': { min: '1024px' },
'>md': { min: '768px' },
'>sm': { min: '640px' },
},
extend: {
zIndex: {
drawer: 120,
mask: 100,
fullscreen: 80,
dropdown: 50,
nav: 30,
},
colors: {
primary: '#3A5BEF',
mask: 'rgba(0, 0, 0, 0.5)',
},
},
},
plugins: [require('@tailwindcss/line-clamp'), require('daisyui')],
daisyui: {
styled: false,
themes: ['light'],
base: false,
utils: false,
logs: true,
rtl: false,
prefix: 'daisy-',
},
};