fix(contactsmenu): adjust padding to new design

Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
pull/55090/head
Richard Steinmetz 2025-01-29 13:33:56 +07:00 committed by Andy Scherzinger
parent 0e73460198
commit 5cbd018e79
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B
1 changed files with 2 additions and 8 deletions

@ -6,7 +6,6 @@
<template>
<li class="contact">
<NcAvatar class="contact__avatar"
:size="44"
:user="contact.isUser ? contact.uid : undefined"
:is-no-user="!contact.isUser"
:disable-menu="true"
@ -44,8 +43,7 @@
class="other-actions"
@click="action.callback(contact)">
<template #icon>
<NcIconSvgWrapper class="contact__action__icon-svg"
:svg="action.iconSvg(contact)" />
<NcIconSvgWrapper :svg="action.iconSvg(contact)" />
</template>
{{ action.displayName(contact) }}
</NcActionButton>
@ -114,13 +112,9 @@ export default {
&__icon {
width: 20px;
height: 20px;
padding: 12px;
padding: calc((var(--default-clickable-area) - 20px) / 2);
filter: var(--background-invert-if-dark);
}
&__icon-svg {
padding: 5px;
}
}
&__avatar {