mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-07 01:56:04 +00:00
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:
@@ -23,14 +23,14 @@
|
||||
height: 1080px;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
background: #0a0a0a;
|
||||
background: transparent;
|
||||
}
|
||||
#particle-burst {
|
||||
position: relative;
|
||||
width: 1920px;
|
||||
height: 1080px;
|
||||
overflow: hidden;
|
||||
background: #0a0a0a;
|
||||
background: transparent;
|
||||
}
|
||||
#bs-video {
|
||||
position: absolute;
|
||||
@@ -43,7 +43,7 @@
|
||||
.bs-overlay {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background: rgba(0, 0, 0, 0.45);
|
||||
background: transparent;
|
||||
z-index: 1;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user