cc-core-cli 1.0.121 → 1.0.122
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/package.json
CHANGED
|
@@ -25,17 +25,36 @@
|
|
|
25
25
|
.logo-layout {
|
|
26
26
|
padding: 0rem 1rem;
|
|
27
27
|
width: 100%;
|
|
28
|
+
height: 100vh;
|
|
28
29
|
}
|
|
30
|
+
|
|
31
|
+
.logo-layout-v3 {
|
|
32
|
+
padding: 0rem 1rem;
|
|
33
|
+
width: 100%;
|
|
34
|
+
height: 100vh;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
@media only screen and (max-width: 768px) {
|
|
39
|
+
.logo-layout {
|
|
40
|
+
padding: 0rem 1rem;
|
|
41
|
+
width: 100%;
|
|
42
|
+
height: 100vh;
|
|
43
|
+
}
|
|
44
|
+
|
|
29
45
|
.logo-layout-v3 {
|
|
30
46
|
padding: 0rem 1rem;
|
|
31
47
|
width: 100%;
|
|
48
|
+
height: 100vh;
|
|
32
49
|
}
|
|
33
50
|
}
|
|
51
|
+
|
|
34
52
|
@media only screen and (min-width: 768px) and (max-width: 992px) {
|
|
35
53
|
.logo-layout {
|
|
36
54
|
padding: 0rem 4rem;
|
|
37
55
|
width: 100%;
|
|
38
56
|
}
|
|
57
|
+
|
|
39
58
|
.logo-layout-v3 {
|
|
40
59
|
padding: 0rem 4rem;
|
|
41
60
|
width: 100%;
|
|
@@ -58,6 +77,7 @@
|
|
|
58
77
|
overflow-y: hidden;
|
|
59
78
|
padding: 1.5rem;
|
|
60
79
|
border-radius: @border-radius-base;
|
|
80
|
+
width: 100%;
|
|
61
81
|
|
|
62
82
|
.form-login-authentication {
|
|
63
83
|
margin-bottom: 15px;
|
|
@@ -87,6 +107,8 @@
|
|
|
87
107
|
.ant-btn-social {
|
|
88
108
|
display: flex;
|
|
89
109
|
justify-content: center;
|
|
110
|
+
align-items: center;
|
|
111
|
+
height: 44px;
|
|
90
112
|
|
|
91
113
|
img {
|
|
92
114
|
height: 20px;
|
|
@@ -216,26 +238,26 @@
|
|
|
216
238
|
}
|
|
217
239
|
|
|
218
240
|
.forgot-password-title {
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
241
|
+
margin-top: 0;
|
|
242
|
+
padding-top: 0;
|
|
243
|
+
text-align: center;
|
|
222
244
|
}
|
|
223
245
|
|
|
224
246
|
.login-input {
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
247
|
+
.ant-input {
|
|
248
|
+
height: 44px;
|
|
249
|
+
font-size: 16px;
|
|
250
|
+
}
|
|
229
251
|
}
|
|
230
252
|
|
|
231
253
|
.login-input-password {
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
254
|
+
.ant-input-password {
|
|
255
|
+
height: 44px;
|
|
256
|
+
font-size: 16px;
|
|
257
|
+
}
|
|
236
258
|
}
|
|
237
259
|
|
|
238
260
|
.button_login {
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
}
|
|
261
|
+
height: 44px;
|
|
262
|
+
font-size: 16px;
|
|
263
|
+
}
|