From 8ae2e82d18cfaf766e746332ae5095da78102a6e Mon Sep 17 00:00:00 2001 From: Alirea <2981883527@qq.com> Date: Wed, 10 Sep 2025 18:47:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E5=8E=86=E5=8F=B2?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E6=A0=87=E9=A2=98=E9=A2=9C=E8=89=B2=E5=A4=A7?= =?UTF-8?q?=E5=B0=8F=E7=AD=89=EF=BC=8C=E7=BB=9F=E4=B8=80=E6=95=88=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/History.vue | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/frontend/src/views/History.vue b/frontend/src/views/History.vue index ddbd71a..900cb83 100644 --- a/frontend/src/views/History.vue +++ b/frontend/src/views/History.vue @@ -657,15 +657,31 @@ const getDateStatusColor = (users: Record) => { display: flex; justify-content: space-between; align-items: center; - margin-bottom: 24px; + margin-bottom: 32px; + padding: 0 8px; +} + +.header-title { + display: flex; + align-items: center; + gap: 16px; +} + +.title-icon { + font-size: 32px; + color: var(--ant-color-primary); } .header-title h1 { margin: 0; - font-size: 24px; - font-weight: 600; + font-size: 32px; + font-weight: 700; + color: var(--ant-color-text); + background: linear-gradient(135deg, var(--ant-color-primary), var(--ant-color-primary-hover)); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; } - .search-section { margin-bottom: 24px; }