From c88b29702d557014858db2d620fbe139eeaa439c Mon Sep 17 00:00:00 2001 From: Astrian Zheng Date: Sat, 24 May 2025 11:34:45 +1000 Subject: [PATCH] =?UTF-8?q?style:=20=E8=B0=83=E6=95=B4=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E4=BB=A5=E6=8F=90=E5=8D=87=E7=94=A8=E6=88=B7=E4=BD=93=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 `input` 元素中添加 `focus:outline-none` 样式,去除聚焦时的默认轮廓 - 在 `App.vue` 中为 `Sidebar` 添加外层 `div`,以便更好地控制布局 - 在 `Home.vue` 中调整 `gap` 间距,使页面元素更加整齐 - 在 `Sidebar.vue` 中添加搜索框,并调整布局和样式,提升用户交互体验 --- src/App.vue | 4 +++- src/components/Sidebar.vue | 6 +++++- src/pages/Home.vue | 2 +- src/style.css | 4 ++++ 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/src/App.vue b/src/App.vue index 558ce82..fc95ef4 100644 --- a/src/App.vue +++ b/src/App.vue @@ -6,7 +6,9 @@ import Playing from './components/Playing.vue'