diff options
| author | Bobby <[email protected]> | 2023-05-09 19:41:27 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-05-09 19:41:27 -0400 |
| commit | ca81030bd777ea04441f9b0cfc388e096f60a5a4 (patch) | |
| tree | 8d67eaf74d81e5b5cb888d91624caa02a4f6c3de /tailwind.config.js | |
| download | mafia-ca81030bd777ea04441f9b0cfc388e096f60a5a4.tar.xz mafia-ca81030bd777ea04441f9b0cfc388e096f60a5a4.zip | |
Initial commit from Create Next App
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..8c4d1b2 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,18 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: [ + './pages/**/*.{js,ts,jsx,tsx,mdx}', + './components/**/*.{js,ts,jsx,tsx,mdx}', + './app/**/*.{js,ts,jsx,tsx,mdx}', + ], + theme: { + extend: { + backgroundImage: { + 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', + 'gradient-conic': + 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', + }, + }, + }, + plugins: [], +} |
