From 747bb08ce49729a404e9524e86537b73965c851e Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 26 Jun 2026 09:35:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=AF=BC=E5=85=A5=20style.css=20?= =?UTF-8?q?=E4=BD=BF=E5=85=A8=E5=B1=80=E8=89=B2=E6=9D=BF=E4=BB=A4=E7=89=8C?= =?UTF-8?q?=E4=B8=8E=20EP=20=E4=B8=BB=E8=89=B2=E8=A6=86=E7=9B=96=E7=94=9F?= =?UTF-8?q?=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit style.css 此前从未被导入,导致 --brand-red 等变量与 --el-color-primary 覆盖全部失效(死代码),引发按钮透明不可见等问题。 Co-Authored-By: Claude --- offer_frontend/src/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/offer_frontend/src/main.js b/offer_frontend/src/main.js index 25c629d..12f3eeb 100644 --- a/offer_frontend/src/main.js +++ b/offer_frontend/src/main.js @@ -3,6 +3,7 @@ import { createPinia } from 'pinia' import ElementPlus from 'element-plus' import 'element-plus/dist/index.css' import zhCn from 'element-plus/dist/locale/zh-cn.mjs' +import './style.css' import App from './App.vue' import router from './router'