Skip to content

Commit 279f0b9

Browse files
committed
fixup! feat(contacts-menu): implement custom javascript hook action
1 parent b48320c commit 279f0b9

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

core/src/components/ContactsMenu/Contact.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@
4444
class="other-actions"
4545
@click="action.callback(contact)">
4646
<template #icon>
47-
<NcIconSvgWrapper :svg="action.iconSvg(contact)" />
47+
<NcIconSvgWrapper class="contact__action__icon-svg"
48+
:svg="action.iconSvg(contact)" />
4849
</template>
4950
{{ action.displayName(contact) }}
5051
</NcActionButton>
@@ -116,6 +117,10 @@ export default {
116117
padding: 12px;
117118
filter: var(--background-invert-if-dark);
118119
}
120+
121+
&__icon-svg {
122+
padding: 5px;
123+
}
119124
}
120125
121126
&__avatar {

0 commit comments

Comments
 (0)