scandoc-ai-components 0.0.72 → 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 +3 -3
- 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%;
|
|
@@ -11438,7 +11438,7 @@ class ExtractorVideo {
|
|
|
11438
11438
|
.desktopRectangle {
|
|
11439
11439
|
position: absolute;
|
|
11440
11440
|
top: 5%; left: 5%; right: 5%; bottom: 5%;
|
|
11441
|
-
border: 5px dashed
|
|
11441
|
+
border: 5px dashed ${cfgValues.VIDEO_COLORS?.borderColor};
|
|
11442
11442
|
border-radius: 30px;
|
|
11443
11443
|
pointer-events: none;
|
|
11444
11444
|
z-index: 3;
|
|
@@ -11463,7 +11463,7 @@ class ExtractorVideo {
|
|
|
11463
11463
|
min-height: 36px;
|
|
11464
11464
|
justify-content: center;
|
|
11465
11465
|
align-items: center;
|
|
11466
|
-
color:
|
|
11466
|
+
color: #${cfgValues.VIDEO_COLORS?.messageColor};
|
|
11467
11467
|
}
|
|
11468
11468
|
</style>
|
|
11469
11469
|
`;
|