From e78784119371b86d9e03a639cdd1eab0fa3fa6ea Mon Sep 17 00:00:00 2001 From: liuweiqing Date: Sun, 11 Feb 2024 11:34:57 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E8=AE=BE=E7=BD=AEicon=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.production | 1 + app/globals.css | 5 +++++ components/SettingsLink.tsx | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.env.production b/.env.production index 3f6b7811..771e8883 100644 --- a/.env.production +++ b/.env.production @@ -5,3 +5,4 @@ NEXT_PUBLIC_OPENAI_API_KEY=sk-ffe19ebe9fa44d00884330ff1c18cf82 NEXT_PUBLIC_PAPER_URL=/api/paper NEXT_PUBLIC_SEMANTIC_API_KEY=hEQvK6ARe84dzDPcMnpzX4n9jfoqztkMfaftPWnb NEXT_PUBLIC_PUBMED_API_KEY=057616e7ce6c722f2ae8679e38a8be9b1a09 +VERCEL_URL=https://www.paperai.life \ No newline at end of file diff --git a/app/globals.css b/app/globals.css index 837daa35..74d7b441 100644 --- a/app/globals.css +++ b/app/globals.css @@ -147,3 +147,8 @@ height: 200px; /* 聚焦时的高度 */ border-color: #007bff; /* 改变边框颜色以提供视觉反馈 */ } + +.icon-hover:hover { + transform: scale(1.2); /* 放大到原大小的1.2倍 */ + transition: transform 0.3s ease; /* 平滑过渡效果 */ +} diff --git a/components/SettingsLink.tsx b/components/SettingsLink.tsx index 8a79b785..967594cb 100644 --- a/components/SettingsLink.tsx +++ b/components/SettingsLink.tsx @@ -30,7 +30,7 @@ const SettingsLink = () => { // // - + ); };