Chore: Fixes icon size in button (#3555)

* Chore: Fixes icon size in button

* Changes normal button to woot button
This commit is contained in:
Nithin David Thomas
2021-12-14 17:37:25 +05:30
committed by GitHub
parent ac372f188d
commit c2191e48b1
14 changed files with 87 additions and 71 deletions

View File

@@ -3,8 +3,7 @@
<woot-button
v-if="!currentChat.muted"
v-tooltip="$t('CONTACT_PANEL.MUTE_CONTACT')"
variant="smooth"
size="small"
variant="clear"
color-scheme="secondary"
icon="speaker-mute"
@click="mute"
@@ -12,16 +11,14 @@
<woot-button
v-else
v-tooltip.left="$t('CONTACT_PANEL.UNMUTE_CONTACT')"
variant="smooth"
size="small"
variant="clear"
color-scheme="secondary"
icon="speaker-1"
@click="unmute"
/>
<woot-button
v-tooltip="$t('CONTACT_PANEL.SEND_TRANSCRIPT')"
variant="smooth"
size="small"
variant="clear"
color-scheme="secondary"
icon="share"
@click="toggleEmailActionsModal"
@@ -93,8 +90,8 @@ export default {
.actions--container {
align-items: center;
.button {
margin-right: var(--space-small);
.resolve-actions {
margin-left: var(--space-small);
}
}