aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tailwind.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
deleted file mode 100644
index 5ddfa06..0000000
--- a/tailwind.config.js
+++ /dev/null
@@ -1,18 +0,0 @@
-const defaultTheme = require("tailwindcss/defaultTheme");
-
-/** @type {import('tailwindcss').Config} */
-module.exports = {
- content: ["./app/**/*.{js,ts,jsx,tsx}", "./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
- theme: {
- fontFamily: {
- sans: ["var(--font-inter)", ...defaultTheme.fontFamily.sans],
- },
- extend: {
- dropShadow: {
- cta: ["0 10px 15px rgba(219, 227, 248, 0.2)"],
- blue: ["0 10px 15px rgba(59, 130, 246, 0.2)"],
- },
- },
- },
- plugins: [require("@tailwindcss/forms")],
-};