@leapdev/gui 0.2.256 → 0.2.259
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/css/auth-leap-addin.css +1 -1
- package/dist/css/auth-leap-desktop.css +1 -1
- package/dist/css/auth-leap-web.css +1 -1
- package/dist/index.html +2 -2
- package/dist/scss/auth/theme/components/_icons.scss +0 -1
- package/dist/scss/auth/theme/components/_toastr.scss +2 -3
- package/dist/scss/auth/theme/features/_auth.scss +15 -16
- package/package.json +1 -1
|
@@ -54,6 +54,7 @@ html {
|
|
|
54
54
|
@media screen and (max-height: 849px) {
|
|
55
55
|
height: auto;
|
|
56
56
|
margin-bottom: 4vh;
|
|
57
|
+
margin-top: 2rem;
|
|
57
58
|
|
|
58
59
|
> svg {
|
|
59
60
|
height: 100%;
|
|
@@ -79,6 +80,7 @@ html {
|
|
|
79
80
|
&_links {
|
|
80
81
|
display: flex;
|
|
81
82
|
margin-top: 2rem;
|
|
83
|
+
margin-bottom: 1rem;
|
|
82
84
|
color: $text-muted;
|
|
83
85
|
text-align: center;
|
|
84
86
|
justify-content: space-between;
|
|
@@ -402,28 +404,25 @@ html {
|
|
|
402
404
|
}
|
|
403
405
|
|
|
404
406
|
&_signin_methods {
|
|
407
|
+
display: grid;
|
|
408
|
+
grid-template-columns: 1fr;
|
|
409
|
+
grid-template-rows: 1fr;
|
|
410
|
+
gap: 0.5rem;
|
|
405
411
|
> .auth_btn {
|
|
412
|
+
margin: 0;
|
|
406
413
|
display: flex;
|
|
414
|
+
justify-content: stretch;
|
|
407
415
|
align-items: center;
|
|
408
|
-
|
|
416
|
+
text-align: left;
|
|
417
|
+
line-height: 1.4;
|
|
418
|
+
padding: 0 1rem;
|
|
409
419
|
text-transform: none;
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
grid-template-rows: 1fr 1fr;
|
|
415
|
-
gap: 0.5rem;
|
|
416
|
-
|
|
417
|
-
>.auth_btn {
|
|
418
|
-
margin: 0;
|
|
420
|
+
|
|
421
|
+
> span {
|
|
422
|
+
width: calc(100% - 3rem);
|
|
423
|
+
text-align: center;
|
|
419
424
|
display: flex;
|
|
420
425
|
justify-content: center;
|
|
421
|
-
align-items: center;
|
|
422
|
-
max-height: 4rem;
|
|
423
|
-
height: 4rem;
|
|
424
|
-
text-align: left;
|
|
425
|
-
line-height: 1.4;
|
|
426
|
-
padding: 0 1rem;
|
|
427
426
|
}
|
|
428
427
|
}
|
|
429
428
|
}
|