fix: user avatar shadow display issue in Safari browser (#7551)

#### What type of PR is this?

/kind bug
/area ui
/milestone 2.21.x

#### What this PR does / why we need it:

Fix user avatar shadow display issue in Safari browser

before:

<img width="281" alt="image" src="https://github.com/user-attachments/assets/72165f9d-b3c4-4d98-902d-b7558fea8c76" />

after:

<img width="388" alt="image" src="https://github.com/user-attachments/assets/12b4b160-53aa-4f19-a335-1f0a53ae9111" />


#### Does this PR introduce a user-facing change?

```release-note
修复用户资料页面头像在 Safari 浏览器下的阴影问题。
```

<!-- Fuck Safari -->
pull/7555/head
Ryan Wang 2025-06-13 23:22:44 +08:00 committed by GitHub
parent 15b029af56
commit 5ec975e75b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ const hasAvatar = computed(() => {
circle
width="100%"
height="100%"
class="ring-4 ring-white drop-shadow-md"
class="ring-4 ring-white shadow-xl"
/>
<VDropdown
v-if="currentUserHasPermission(['system:users:manage']) || isCurrentUser"