From 3c04d1e9a742859b6d1ff725436b7505ea2eca8d Mon Sep 17 00:00:00 2001 From: Cyril Date: Thu, 23 Apr 2026 15:05:11 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8(frontend)=20tune=20PiP=20window=20?= =?UTF-8?q?default=20dimensions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Start PiP in a taller shape closer to a typical video call layout. --- src/frontend/src/features/pip/hooks/useDocumentPiP.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/src/features/pip/hooks/useDocumentPiP.ts b/src/frontend/src/features/pip/hooks/useDocumentPiP.ts index 1632ccd8..96a42c8d 100644 --- a/src/frontend/src/features/pip/hooks/useDocumentPiP.ts +++ b/src/frontend/src/features/pip/hooks/useDocumentPiP.ts @@ -12,8 +12,8 @@ type WindowWithDocumentPiP = Window & { } export const useDocumentPiP = ({ - width = 480, - height = 270, + width = 400, + height = 480, }: { width?: number height?: number