-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (49 loc) · 1.48 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
48
49
/** @type {import('tailwindcss').Config} */
const plugin = require('tailwindcss/plugin')
module.exports = {
content: {
relative: true,
files: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
},
theme: {
extend: {},
},
plugins: [
// require('tailwindcss-logical'),
// require('@tailwindcss/typography'),
// require('@tailwindcss/aspect-ratio'),
// require('@tailwindcss/container-queries'),
// plugin(function ({ addBase, addComponents, addUtilities, theme }) {
// addBase({
// h1: {
// fontSize: theme('fontSize.2xl'),
// },
// h2: {
// fontSize: theme('fontSize.xl'),
// },
// })
// addComponents({
// '.card': {
// backgroundColor: theme('colors.white'),
// borderRadius: theme('borderRadius.lg'),
// padding: theme('spacing.6'),
// boxShadow: theme('boxShadow.xl'),
// },
// })
// addUtilities({
// '.content-auto': {
// contentVisibility: 'auto',
// },
// })
// }),
],
// corePlugins: {
// preflight: false, // https://stackoverflow.com/questions/71715157/tailwinds-ant-design-button-color-is-white-but-has-own-color-wnen-i-hover-it
// }, // костыль нужен только для Modal.confirm(), для обычного Modal работает без него
// darkMode: false,
important: true,
}