index.scss 568 B

1234567891011121314151617181920212223242526272829
  1. .login-container {
  2. height: 100%;
  3. .logo-text {
  4. margin: 0;
  5. font-size: 42px;
  6. font-weight: bold;
  7. color: #34495e;
  8. white-space: nowrap;
  9. text-align: center;
  10. margin-bottom: 40px;
  11. }
  12. .login-form {
  13. width: 420px;
  14. padding: 45px;
  15. border-radius: 10px;
  16. box-shadow: rgb(0 0 0 / 10%) 0 2px 10px 2px;
  17. .login-btn {
  18. display: flex;
  19. justify-content: space-between;
  20. align-items: center;
  21. width: 100%;
  22. margin-top: 40px;
  23. white-space: nowrap;
  24. .el-button {
  25. width: 185px;
  26. }
  27. }
  28. }
  29. }