@lambo-design/login-form 1.0.0-beta.41 → 1.0.0-beta.42

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/login-qr.vue +1 -66
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambo-design/login-form",
3
- "version": "1.0.0-beta.41",
3
+ "version": "1.0.0-beta.42",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "lambo",
@@ -10,8 +10,8 @@
10
10
  "registry": "https://registry.npmjs.org/"
11
11
  },
12
12
  "devDependencies": {
13
- "@lambo-design/core": "^4.7.1-beta.180",
14
- "@lambo-design/shared": "^1.0.0-beta.364"
13
+ "@lambo-design/shared": "^1.0.0-beta.364",
14
+ "@lambo-design/core": "^4.7.1-beta.180"
15
15
  },
16
16
  "scripts": {
17
17
  "release": "pnpm release-beta && git push --follow-tags && pnpm re-publish",
package/src/login-qr.vue CHANGED
@@ -424,7 +424,7 @@ export default {
424
424
  }
425
425
  }
426
426
  </script>
427
- <style scoped>
427
+ <style scoped lang="less">
428
428
  .lambo-login-qrcode {
429
429
  display: flex;
430
430
  flex-direction: column;
@@ -491,69 +491,4 @@ export default {
491
491
  }
492
492
 
493
493
 
494
- /* 企业微信登录组件容器 */
495
- .wx-saas {
496
- #ww_login {
497
- width: 100% !important;
498
- max-width: 220px !important;
499
- margin: 0 auto !important;
500
- display: block !important;
501
- }
502
- .lambo-login-qrcode ::v-deep #ww_login iframe,
503
- .qrcode-img-wrapper ::v-deep iframe {
504
- position: relative;
505
- top: -60px !important;
506
- height: 360px !important;
507
- border: none !important;
508
- width: 100% !important;
509
- overflow: hidden !important;
510
- }
511
- }
512
- .wx-private {
513
- #ww_login {
514
- width: 100% !important;
515
- margin: 0 auto !important;
516
- display: block !important;
517
- }
518
- .lambo-login-qrcode ::v-deep #ww_login iframe,
519
- .qrcode-img-wrapper ::v-deep iframe {
520
- position: relative;
521
- top: 25px !important;
522
- height: 400px !important;
523
- border: none !important;
524
- width: 100% !important;
525
- overflow: hidden !important;
526
- }
527
-
528
- .qrcode-img-wrapper {
529
- height: 400px !important;
530
- min-height: 260px !important;
531
- display: flex;
532
- justify-content: center;
533
- align-items: center;
534
- overflow: hidden;
535
- width: 100%;
536
- position: relative;
537
- }
538
- }
539
- /* 钉钉登录组件容器 */
540
- #dingtalk_login {
541
- width: 100% !important;
542
- max-width: 260px !important;
543
- height: 260px !important;
544
- margin: 0 auto !important;
545
- display: block !important;
546
- overflow: hidden;
547
- }
548
-
549
- /* 钉钉iframe样式 - 减少上方留白 */
550
- .lambo-login-qrcode ::v-deep #dingtalk_login iframe,
551
- .qrcode-img-wrapper ::v-deep iframe {
552
- position: relative;
553
- top: -60px !important;
554
- height: 360px !important;
555
- border: none !important;
556
- width: 100% !important;
557
- overflow: hidden !important;
558
- }
559
494
  </style>