mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 16:43:16 +00:00
14 lines
246 B
JavaScript
14 lines
246 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
spacing: {
|
|
112: '28rem',
|
|
128: '32rem',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|