From 4919f028c884a041da7ff098abb02389b4eac598 Mon Sep 17 00:00:00 2001 From: 简律纯 Date: Tue, 18 Apr 2023 03:02:17 +0800 Subject: ✨add envshare docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- envshare/tailwind.config.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 envshare/tailwind.config.js (limited to 'envshare/tailwind.config.js') diff --git a/envshare/tailwind.config.js b/envshare/tailwind.config.js new file mode 100644 index 0000000..5ddfa06 --- /dev/null +++ b/envshare/tailwind.config.js @@ -0,0 +1,18 @@ +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")], +}; -- cgit v1.2.3-70-g09d2