index.module.scss 540 B

1234567891011121314151617181920212223242526
  1. .DingLogin {
  2. width: 100%;
  3. height: 100%;
  4. background-image: url('../../assets/img/loginBac.jpg');
  5. background-size: 100% 100%;
  6. :global {
  7. .DingLoginBox {
  8. padding-top: 150px;
  9. width: 100%;
  10. height: 100%;
  11. background-color: rgba(255, 255, 255, 0.4);
  12. display: flex;
  13. justify-content: center;
  14. align-items: center;
  15. flex-direction: column;
  16. & > h3 {
  17. margin-top: 10px;
  18. letter-spacing: 4px;
  19. span {
  20. color: var(--themeColor);
  21. }
  22. }
  23. }
  24. }
  25. }