react_hsbc_teller 1.0.7 → 1.1.0
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 +2 -1
- package/packages/demo/pdf.js +78 -0
- package/packages/pages/foot/foot.jsx +4 -4
- package/packages/pages/foot/foot.less +6 -2
- package/packages/pages/header/header.jsx +1 -1
- package/packages/pages/video/video.jsx +217 -91
- package/packages/pages/video/video.less +12 -9
|
@@ -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,7 +50,7 @@
|
|
|
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);
|
|
@@ -59,13 +59,13 @@
|
|
|
59
59
|
.video1{
|
|
60
60
|
width: 100%;
|
|
61
61
|
height: 100%;
|
|
62
|
-
object-fit:
|
|
62
|
+
object-fit: cover;
|
|
63
63
|
border-radius: 6px;
|
|
64
64
|
}
|
|
65
65
|
.video{
|
|
66
66
|
width: 100%;
|
|
67
67
|
height: 100%;
|
|
68
|
-
object-fit:
|
|
68
|
+
object-fit: cover;
|
|
69
69
|
border-radius: 6px;
|
|
70
70
|
}
|
|
71
71
|
.video1Div{
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
background: #f0f0f0;
|
|
78
78
|
}
|
|
79
79
|
.healthVideo{
|
|
80
|
-
height: ~"calc(100vh -
|
|
80
|
+
height: ~"calc(100vh - 15.8125rem)";
|
|
81
81
|
width: 100%;
|
|
82
82
|
display: inline-flex;
|
|
83
83
|
}
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
}
|
|
87
87
|
.ownClass{
|
|
88
88
|
height: calc(100vh - 15px);
|
|
89
|
-
object-fit:
|
|
89
|
+
object-fit: cover;
|
|
90
90
|
width: 100%;
|
|
91
91
|
}
|
|
92
92
|
.publishVideoClass{
|
|
@@ -138,6 +138,7 @@
|
|
|
138
138
|
.invitationDiv{
|
|
139
139
|
margin-left: 40px;
|
|
140
140
|
margin-bottom: 15px;
|
|
141
|
+
height: 27px;
|
|
141
142
|
input::-webkit-inner-spin-button {
|
|
142
143
|
-webkit-appearance: none;
|
|
143
144
|
appearance: none;
|
|
@@ -164,7 +165,7 @@
|
|
|
164
165
|
.projection{
|
|
165
166
|
width: 80%;
|
|
166
167
|
position: relative;
|
|
167
|
-
background: #
|
|
168
|
+
// background: #fff;
|
|
168
169
|
color: #333;
|
|
169
170
|
border-radius: 0 4px 4px 4px;
|
|
170
171
|
text-align: left;
|
|
@@ -453,12 +454,14 @@
|
|
|
453
454
|
.radio input:checked+i:after {
|
|
454
455
|
opacity: 1;
|
|
455
456
|
}
|
|
457
|
+
.errorClassInvitationColor{
|
|
458
|
+
background: #F9F2F3;
|
|
459
|
+
border: 1px #E5B2B5 solid;
|
|
460
|
+
}
|
|
456
461
|
.errorClassInvitation{
|
|
457
462
|
width: 90%;
|
|
458
463
|
height: 50px;
|
|
459
464
|
margin: 50px 30px 0px;
|
|
460
|
-
background: #F9F2F3;
|
|
461
|
-
border: 1px #E5B2B5 solid;
|
|
462
465
|
img{
|
|
463
466
|
margin: 15px 20px;
|
|
464
467
|
width: 18px;
|