aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-07-24 20:27:10 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-07-24 20:27:10 -0400
commit649b1d4328a7ffc31cb5e9d47e2b3ddefcc66f16 (patch)
treecec8bf0658a8555c418b3ffeef57332097d84ee5 /tailwind.config.js
parenta04ae661c547e7e051927e7a169aeb492f50a532 (diff)
downloadalure-website-649b1d4328a7ffc31cb5e9d47e2b3ddefcc66f16.tar.gz
alure-website-649b1d4328a7ffc31cb5e9d47e2b3ddefcc66f16.tar.bz2
alure-website-649b1d4328a7ffc31cb5e9d47e2b3ddefcc66f16.zip
Initial rewrite to astro
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
deleted file mode 100644
index 86b035f..0000000
--- a/tailwind.config.js
+++ /dev/null
@@ -1,20 +0,0 @@
-/** @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'),
- ],
-}