fix(registry): transparent backgrounds on all caption components

Replace opaque backgrounds (#0a0a0a, #000, #000000) with transparent
on both html/body and the composition root div for all 15 caption
components. Captions are overlays — opaque backgrounds cover the
underlying video when loaded as sub-compositions.
This commit is contained in:
Miguel Ángel
2026-05-20 02:02:12 -04:00
parent 471b4efb4b
commit 0187a82a6f
15 changed files with 37 additions and 37 deletions
@@ -23,14 +23,14 @@
height: 1080px;
margin: 0;
overflow: hidden;
background: #0a0a0a;
background: transparent;
}
#caption-glitch-rgb {
position: relative;
width: 1920px;
height: 1080px;
overflow: hidden;
background: #0a0a0a;
background: transparent;
}
#gl-video {
position: absolute;