From 1398e5a7184b19ffa5eca32bd5b90e69acf6202e Mon Sep 17 00:00:00 2001 From: haoxr <1490493387@qq.com> Date: Fri, 24 Feb 2023 23:57:14 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E7=A7=BB=E9=99=A4tailwind?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Former-commit-id: 7c0ed60b59013c59459a35ede446387982e27faf --- postcss.config.js | 6 ------ tailwind.config.js | 15 --------------- 2 files changed, 21 deletions(-) delete mode 100644 postcss.config.js delete mode 100644 tailwind.config.js diff --git a/postcss.config.js b/postcss.config.js deleted file mode 100644 index 33ad091d..00000000 --- a/postcss.config.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - plugins: { - tailwindcss: {}, - autoprefixer: {}, - }, -} diff --git a/tailwind.config.js b/tailwind.config.js deleted file mode 100644 index 5b86b532..00000000 --- a/tailwind.config.js +++ /dev/null @@ -1,15 +0,0 @@ -/** @type {import('tailwindcss').Config} */ -module.exports = { - purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'], - darkMode: 'class', - theme: { - - backgroundColor: theme => ({ - ...theme('colors'), - "sidebar-logo":'#2b2f3a' - }) - }, - plugins: [], - - -}