index.less 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .sign-layout {
  2. display : flex;
  3. justify-content: center;
  4. align-items : center;
  5. height : 100%;
  6. background : url("~@pc/assets/images/loginBackground.jpg") no-repeat center center;
  7. background-size: cover;
  8. &__wrapper {
  9. display : flex;
  10. width : 690px;
  11. height : 450px;
  12. border-radius : 5px;
  13. background-color: #fff;
  14. box-shadow : 0 5px 10px 0 rgba(18, 22, 24, .18);
  15. overflow : hidden;
  16. }
  17. .logo {
  18. width : 275px;
  19. text-align : center;
  20. background : url("~@pc/assets/images/logoBackground.jpg") no-repeat center center;
  21. background-size: cover;
  22. &-image {
  23. margin-top: 75px;
  24. }
  25. }
  26. .login {
  27. flex : 1;
  28. display : flex;
  29. flex-direction : column;
  30. justify-content: center;
  31. padding : 0 55px;
  32. &-title {
  33. font-size : 26px;
  34. margin-bottom: 20px;
  35. }
  36. &-container {
  37. .el-button.submit {
  38. width : 100%;
  39. height: 40px;
  40. }
  41. }
  42. }
  43. }