diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-10-30 09:21:30 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-10-30 09:21:30 +0700 |
| commit | e8c414325a1e32474e740cc6e7dca8396affc5e3 (patch) | |
| tree | e84feb31cd8619d208b4558c5fcf30becc5337e0 /tailwind.config.js | |
| parent | 1694c12f75ad06c5e40d6f9a66e245c3e683146c (diff) | |
| parent | c82110f7d3a2f85de99045fde7b579e369f15b2c (diff) | |
Merge branch 'refactor/all' into development
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tailwind.config.js b/tailwind.config.js index 9b180a90..f1c740d5 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,9 +1,15 @@ /** @type {import('tailwindcss').Config} */ module.exports = { - content: ['./src/**/*.{js,ts,jsx,tsx}'], + content: [ + './src/**/*.{js,ts,jsx,tsx}', + './src-migrate/**/*.{js,ts,jsx,tsx}' + ], plugins: [require('flowbite/plugin')], darkMode: 'class', theme: { + container: { + center: true + }, extend: { typography: { DEFAULT: { |
