react_hsbc_teller 1.0.9 → 1.1.2
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/lib/hsbc.js +1 -1
- package/package.json +1 -1
- package/packages/demo/demo.js +5 -5
- package/packages/pages/foot/foot.jsx +15 -4
- package/packages/pages/video/video.jsx +198 -74
- package/packages/pages/video/video.less +18 -7
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
.mixedvideo{
|
|
6
6
|
display: none;
|
|
7
7
|
position:absolute;
|
|
8
|
-
object-fit:
|
|
8
|
+
object-fit: cover
|
|
9
9
|
}
|
|
10
10
|
.imgClass{
|
|
11
11
|
width: 100%;
|
|
@@ -50,13 +50,19 @@
|
|
|
50
50
|
border-radius: 6px;
|
|
51
51
|
}
|
|
52
52
|
.videoFit{
|
|
53
|
-
object-fit:
|
|
53
|
+
object-fit: cover !important;
|
|
54
54
|
}
|
|
55
55
|
// .isBack {
|
|
56
56
|
// transform: rotateY(180deg);
|
|
57
57
|
// // background: #333;
|
|
58
58
|
// }
|
|
59
59
|
.video1{
|
|
60
|
+
width: 100%;
|
|
61
|
+
height: 100%;
|
|
62
|
+
object-fit: cover;
|
|
63
|
+
border-radius: 6px;
|
|
64
|
+
}
|
|
65
|
+
.videoTab{
|
|
60
66
|
width: 100%;
|
|
61
67
|
height: 100%;
|
|
62
68
|
object-fit: contain;
|
|
@@ -65,7 +71,7 @@
|
|
|
65
71
|
.video{
|
|
66
72
|
width: 100%;
|
|
67
73
|
height: 100%;
|
|
68
|
-
object-fit:
|
|
74
|
+
object-fit: cover;
|
|
69
75
|
border-radius: 6px;
|
|
70
76
|
}
|
|
71
77
|
.video1Div{
|
|
@@ -77,7 +83,7 @@
|
|
|
77
83
|
background: #f0f0f0;
|
|
78
84
|
}
|
|
79
85
|
.healthVideo{
|
|
80
|
-
height: ~"calc(100vh -
|
|
86
|
+
height: ~"calc(100vh - 15.8125rem)";
|
|
81
87
|
width: 100%;
|
|
82
88
|
display: inline-flex;
|
|
83
89
|
}
|
|
@@ -86,7 +92,7 @@
|
|
|
86
92
|
}
|
|
87
93
|
.ownClass{
|
|
88
94
|
height: calc(100vh - 15px);
|
|
89
|
-
object-fit:
|
|
95
|
+
object-fit: cover;
|
|
90
96
|
width: 100%;
|
|
91
97
|
}
|
|
92
98
|
.publishVideoClass{
|
|
@@ -453,12 +459,14 @@
|
|
|
453
459
|
.radio input:checked+i:after {
|
|
454
460
|
opacity: 1;
|
|
455
461
|
}
|
|
462
|
+
.errorClassInvitationColor{
|
|
463
|
+
background: #F9F2F3;
|
|
464
|
+
border: 1px #E5B2B5 solid;
|
|
465
|
+
}
|
|
456
466
|
.errorClassInvitation{
|
|
457
467
|
width: 90%;
|
|
458
468
|
height: 50px;
|
|
459
469
|
margin: 50px 30px 0px;
|
|
460
|
-
background: #F9F2F3;
|
|
461
|
-
border: 1px #E5B2B5 solid;
|
|
462
470
|
img{
|
|
463
471
|
margin: 15px 20px;
|
|
464
472
|
width: 18px;
|
|
@@ -469,4 +477,7 @@
|
|
|
469
477
|
margin: 20px 40px;
|
|
470
478
|
font-size: 14px;
|
|
471
479
|
word-break: break-all;
|
|
480
|
+
}
|
|
481
|
+
.speakerTitle{
|
|
482
|
+
color: red;
|
|
472
483
|
}
|