From 908a2fbb3a27d2796a79ccd5576ca4c3a2d372ea Mon Sep 17 00:00:00 2001
From: JinMao <jinmao88@qq.com>
Date: 星期二, 15 十一月 2022 19:43:20 +0800
Subject: [PATCH] chore: update ci

---
 windi.config.ts |   16 +++++++---------
 1 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/windi.config.ts b/windi.config.ts
index 1a79023..0f3d1f2 100644
--- a/windi.config.ts
+++ b/windi.config.ts
@@ -1,18 +1,16 @@
-import lineClamp from 'windicss/plugin/line-clamp';
-import colors from 'windicss/colors';
-
 import { defineConfig } from 'vite-plugin-windicss';
 import { primaryColor } from './build/config/themeConfig';
 
 export default defineConfig({
   darkMode: 'class',
-  plugins: [lineClamp, createEnterPlugin()],
+  plugins: [createEnterPlugin()],
   theme: {
     extend: {
+      zIndex: {
+        '-1': '-1',
+      },
       colors: {
-        ...colors,
         primary: primaryColor,
-        secondary: 'rgba(0, 0, 0, 0.45)',
       },
       screens: {
         sm: '576px',
@@ -26,10 +24,10 @@
 });
 
 /**
- * Used for animation when the element is displayed
- * @param maxOutput The larger the maxOutput output, the larger the generated css volume
+ * Used for animation when the element is displayed.
+ * @param maxOutput The larger the maxOutput output, the larger the generated css volume.
  */
-function createEnterPlugin(maxOutput = 10) {
+function createEnterPlugin(maxOutput = 6) {
   const createCss = (index: number, d = 'x') => {
     const upd = d.toUpperCase();
     return {

--
Gitblit v1.8.0