fix: render call ui in mobile view correctly

This commit is contained in:
Shariq Ansari 2024-05-27 14:13:06 +05:30
parent d36e2a2316
commit ba811d725a
2 changed files with 4 additions and 5 deletions

View File

@ -1,5 +1,5 @@
<template>
<div v-show="showCallPopup">
<div v-show="showCallPopup" v-bind="$attrs">
<div
ref="callPopup"
class="fixed z-20 flex w-60 cursor-move select-none flex-col rounded-lg bg-gray-900 p-4 text-gray-300 shadow-2xl"
@ -116,6 +116,7 @@
v-show="showSmallCallWindow"
class="ml-2 flex cursor-pointer select-none items-center justify-between gap-3 rounded-lg bg-gray-900 px-2 py-[7px] text-base text-gray-300"
@click="toggleCallWindow"
v-bind="$attrs"
>
<div class="flex items-center gap-2">
<Avatar

View File

@ -5,11 +5,9 @@
<FeatherIcon name="menu" class="size-4" />
</Button>
</div>
<div id="app-header" class="flex-1"></div>
<div class="flex items-center justify-center">
<CallUI />
</div>
<div id="app-header" class="flex-1" />
</div>
<CallUI class="mr-3 mt-2" />
</template>
<script setup>