Browse Source

style(navbar): 更新自定义头像样式以移除圆角并调整尺寸

- 移除自定义头像的边框圆角样式
- 设置头像图片为自动高度以保持比例
- 调整头像宽度从 105px 减少到 100px
- 确保头像区域溢出可见以保持设计一致性
master
qiankanghui 3 weeks ago
parent
commit
c887360684
  1. 10
      src/views/main-navbar.vue

10
src/views/main-navbar.vue

@ -491,9 +491,15 @@ export default {
margin-bottom: 15px; margin-bottom: 15px;
} }
.custom-avatar {
border-radius: 0 !important;
overflow: visible !important;
}
.custom-avatar img { .custom-avatar img {
width: 105px;
height: 35px;
border-radius: 0 !important;
width: 100px;
height: auto;
} }
</style> </style>
Loading…
Cancel
Save