index.module.less 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .loginSection {
  2. .iconClose {
  3. background: url('./images/icon_close.png') no-repeat center;
  4. background-size: 100%;
  5. }
  6. }
  7. .loginTabs {
  8. // @apply px-9 bg-white;
  9. :global {
  10. --el-border-color-light: transparent !important;
  11. .el-tabs {
  12. --el-tabs-header-height: 35px !important;
  13. }
  14. .el-tabs__content {
  15. overflow: inherit;
  16. }
  17. .el-tabs__item {
  18. @apply text-lg !important;
  19. --el-text-color-primary: #666 !important;
  20. }
  21. }
  22. .scanTxt {
  23. span {
  24. color: var(--el-color-primary);
  25. }
  26. }
  27. }
  28. .toolTips {
  29. position: absolute;
  30. left: -118px;
  31. top: 6px;
  32. border-radius: 2px;
  33. padding: 3px 10px;
  34. z-index: 2000;
  35. font-size: 12px;
  36. line-height: 20px;
  37. width: 110px;
  38. word-wrap: break-word;
  39. visibility: visible;
  40. background: #ffff;
  41. border: 1px solid var(--el-color-primary);
  42. color: var(--el-color-primary);
  43. .toolTips_arrow {
  44. position: absolute;
  45. top: -5px;
  46. transform: translate3d(0px, 15px, 0px);
  47. right: -5px;
  48. width: 10px;
  49. height: 10px;
  50. z-index: -1;
  51. &::before {
  52. position: absolute;
  53. width: 10px;
  54. height: 10px;
  55. z-index: -1;
  56. content: ' ';
  57. transform: rotate(45deg);
  58. background: var(--el-text-color-primary);
  59. box-sizing: border-box;
  60. border-top-right-radius: 2px;
  61. border: 1px solid var(--el-color-primary);
  62. background: #fff;
  63. right: 0;
  64. border-left-color: transparent !important;
  65. border-bottom-color: transparent !important;
  66. }
  67. }
  68. }