From c887360684ce74074224236241843203d675e3ab Mon Sep 17 00:00:00 2001 From: qiankanghui Date: Wed, 24 Jun 2026 15:18:43 +0800 Subject: [PATCH] =?UTF-8?q?style(navbar):=20=E6=9B=B4=E6=96=B0=E8=87=AA?= =?UTF-8?q?=E5=AE=9A=E4=B9=89=E5=A4=B4=E5=83=8F=E6=A0=B7=E5=BC=8F=E4=BB=A5?= =?UTF-8?q?=E7=A7=BB=E9=99=A4=E5=9C=86=E8=A7=92=E5=B9=B6=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E5=B0=BA=E5=AF=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除自定义头像的边框圆角样式 - 设置头像图片为自动高度以保持比例 - 调整头像宽度从 105px 减少到 100px - 确保头像区域溢出可见以保持设计一致性 --- src/views/main-navbar.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/views/main-navbar.vue b/src/views/main-navbar.vue index 37e527e..13a450f 100644 --- a/src/views/main-navbar.vue +++ b/src/views/main-navbar.vue @@ -491,9 +491,15 @@ export default { margin-bottom: 15px; } +.custom-avatar { + border-radius: 0 !important; + overflow: visible !important; +} + .custom-avatar img { - width: 105px; - height: 35px; + border-radius: 0 !important; + width: 100px; + height: auto; }