diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2023-07-17 20:42:50 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2023-07-17 20:42:50 -0400 |
| commit | c4c55a93bc6af8b15f45225169758e08ff1b13cd (patch) | |
| tree | bf7e7c4070e462e99bcea327588c323025b6a0bb /tailwind.config.js | |
| download | sei-website-c4c55a93bc6af8b15f45225169758e08ff1b13cd.tar.gz sei-website-c4c55a93bc6af8b15f45225169758e08ff1b13cd.tar.bz2 sei-website-c4c55a93bc6af8b15f45225169758e08ff1b13cd.zip | |
Initial rewrite
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..86b035f --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,20 @@ +/** @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: [ + require('@tailwindcss/typography'), + ], +} |
