scandoc-ai-components 0.0.71 → 0.0.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11415,7 +11415,7 @@ class ExtractorVideo {
|
|
|
11415
11415
|
gap: 8px;
|
|
11416
11416
|
padding: 16px;
|
|
11417
11417
|
background-color: rgba(255, 255, 255, 0.05);
|
|
11418
|
-
border: 1px solid
|
|
11418
|
+
border: 1px solid ${cfgValues.VIDEO_COLORS?.borderColor};
|
|
11419
11419
|
border-radius: 15px;
|
|
11420
11420
|
margin-left: 20%;
|
|
11421
11421
|
margin-right: 20%;
|
|
@@ -11430,8 +11430,6 @@ class ExtractorVideo {
|
|
|
11430
11430
|
|
|
11431
11431
|
.desktopVideo {
|
|
11432
11432
|
position: absolute;
|
|
11433
|
-
top: 0;
|
|
11434
|
-
left: 0;
|
|
11435
11433
|
width: 100%;
|
|
11436
11434
|
height: 100%;
|
|
11437
11435
|
object-fit: cover;
|
|
@@ -11439,8 +11437,8 @@ class ExtractorVideo {
|
|
|
11439
11437
|
|
|
11440
11438
|
.desktopRectangle {
|
|
11441
11439
|
position: absolute;
|
|
11442
|
-
top:
|
|
11443
|
-
border: 5px dashed
|
|
11440
|
+
top: 5%; left: 5%; right: 5%; bottom: 5%;
|
|
11441
|
+
border: 5px dashed ${cfgValues.VIDEO_COLORS?.borderColor};
|
|
11444
11442
|
border-radius: 30px;
|
|
11445
11443
|
pointer-events: none;
|
|
11446
11444
|
z-index: 3;
|
|
@@ -11465,7 +11463,7 @@ class ExtractorVideo {
|
|
|
11465
11463
|
min-height: 36px;
|
|
11466
11464
|
justify-content: center;
|
|
11467
11465
|
align-items: center;
|
|
11468
|
-
color:
|
|
11466
|
+
color: #${cfgValues.VIDEO_COLORS?.messageColor};
|
|
11469
11467
|
}
|
|
11470
11468
|
</style>
|
|
11471
11469
|
`;
|