From a1e37dd66f0403fae64b751242747312ec5df9ad Mon Sep 17 00:00:00 2001 From: Santiago Puppo Date: Fri, 8 May 2026 14:15:45 -0300 Subject: [PATCH] fix(html): set min dimensions on background-video host (#1523) --- packages/html/src/define/background/skin.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/html/src/define/background/skin.css b/packages/html/src/define/background/skin.css index f0956b9e..e831fc03 100644 --- a/packages/html/src/define/background/skin.css +++ b/packages/html/src/define/background/skin.css @@ -7,7 +7,9 @@ background-video-skin { position: relative; display: block; width: 100%; + min-width: 300px; height: 100%; + min-height: 150px; object-fit: var(--media-object-fit); }