updatePassword.wxss 779 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* component/updatePassword/updatePassword.wxss */
  2. @import "../../pages/login/login.wxss";
  3. .updatepassword_page {
  4. height: 100%;
  5. display: flex;
  6. background-color: rgba(0, 0, 0, 0.74);
  7. justify-content: center;
  8. flex-direction: column;
  9. align-items: center;
  10. width: 100%;
  11. }
  12. .updatepassword_window {
  13. background-color: white;
  14. border-radius: 7rpx;
  15. }
  16. .updatepassword_window_top {
  17. border-radius: 7px 7px 2px 2px;
  18. background-color: #eeeeee;
  19. width: 100%;
  20. height: 90rpx;
  21. display: flex;
  22. justify-content: center;
  23. align-items: center;
  24. }
  25. .updatepassword_input_layout {
  26. display: flex;
  27. margin-top: 80rpx;
  28. flex-direction: column;
  29. justify-content: start;
  30. align-items: center;
  31. width: 100%;
  32. height: 100%;
  33. }