Skip to content

Commit b3467b4

Browse files
committed
fix(core): make sure no alpha mask is applied on the account menu
Signed-off-by: Ferdinand Thiessen <[email protected]>
1 parent a7a7805 commit b3467b4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

core/src/views/AccountMenu.vue

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,12 +197,15 @@ export default defineComponent({
197197
}
198198
199199
.account-menu {
200+
:deep(*) {
201+
// do not apply the alpha mask on the avatar div
202+
mask: none !important;
203+
}
204+
200205
&__avatar {
201206
--account-menu-outline: var(--border-width-input) solid color-mix(in srgb, var(--color-background-plain-text), transparent 75%);
202207
outline: var(--account-menu-outline);
203208
position: fixed;
204-
// do not apply the alpha mask on the avatar div
205-
mask: none !important;
206209
207210
&:hover {
208211
--account-menu-outline: none;

0 commit comments

Comments
 (0)