diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-10-23 17:11:33 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-10-23 17:11:33 +0700 |
| commit | 90710579ba1c12060877f6ec2d26103f9c31058d (patch) | |
| tree | 307032cfb8cd13b790c569bc443258b00b07684e /tailwind.config.js | |
| parent | a001da95b9c03167656aec8a573cf60c12164b3f (diff) | |
Refactor and migrate register page
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: { |
