fix: reject button is rotated

(cherry picked from commit afa96c330bb123067b15526c22d46c6e932ace01)
This commit is contained in:
Shariq Ansari 2025-08-19 11:11:50 +05:30 committed by Mergify
parent 295b0f4c2a
commit 9e19e54f75

View File

@ -72,10 +72,13 @@
theme="red"
:label="__('Cancel')"
@click="cancelCall"
class="rounded-lg rotate-[135deg] text-ink-white"
class="rounded-lg text-ink-white"
:disabled="callStatus == 'initiating'"
:iconLeft="PhoneIcon"
/>
>
<template #prefix>
<PhoneIcon class="rotate-[135deg]" />
</template>
</Button>
</div>
<div v-else class="flex gap-2">
<Button
@ -92,10 +95,13 @@
variant="solid"
theme="red"
:label="__('Reject')"
class="rounded-lg rotate-[135deg] text-ink-white"
:iconLeft="PhoneIcon"
class="rounded-lg text-ink-white"
@click="rejectIncomingCall"
/>
>
<template #prefix>
<PhoneIcon class="rotate-[135deg]" />
</template>
</Button>
</div>
</div>
</div>