(fix): live reactions, message and call invites
All checks were successful
/ build-web (push) Successful in 7m40s
/ build-desktop (linux) (push) Successful in 12m10s
/ build-mobile (push) Successful in 19m43s
/ release (push) Successful in 3m35s

(fix): call ui
This commit is contained in:
Alois 2026-07-31 00:29:48 +02:00
commit f1874042ba
Signed by: alois
SSH key fingerprint: SHA256:GBzT2DXvAuGV9XIV5W3WrzVpjU54FThmxHXdbz95J24
10 changed files with 203 additions and 88 deletions

View file

@ -26,7 +26,10 @@ export default function InvitePopup({
loading={null}
component={(user) => (
<Dialog open={open} onOpenChange={setOpen}>
<DialogContent className="flex flex-col gap-5 items-center justify-center w-65 h-80">
<DialogContent
showCloseButton={false}
className="flex flex-col gap-5 items-center justify-center w-65 h-80"
>
<Avatar className="size-30">
<AvatarImage src={user.Avatar} />
<AvatarFallback className="text-5xl">
@ -36,14 +39,14 @@ export default function InvitePopup({
<p className="text-xl font-medium">{user.Display}</p>
<div className="w-full flex justify-center gap-3">
<Button
className="w-14 h-14"
className="w-13 h-13!"
variant="destructive"
onClick={() => onAccept(false)}
>
<X className="size-5" />
</Button>
<Button
className="w-14 h-14"
className="w-13 h-13!"
variant="subtleDefault"
onClick={() => onAccept(true)}
>

View file

@ -268,7 +268,7 @@ export default function Base({
flush || fill ? "rounded-none" : "rounded-md"
} ${
type === "user" && isSpeaking
? "border-4 border-(--primary-foreground-alt)/75"
? "border-4 border-(--primary-foreground-alt)/75!"
: fill
? "border-0"
: "border"