app.wxss 391 B

1234567891011121314151617181920212223242526
  1. /**app.wxss**/
  2. .container {
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: space-between;
  8. box-sizing: border-box;
  9. }
  10. .inputView {
  11. display: flex;
  12. background-color: #fff;
  13. }
  14. .btnView {
  15. margin-top: 2rem;
  16. }
  17. .btnView button {
  18. width: 90%!important;
  19. }
  20. .loginLab {
  21. margin: 1rem;
  22. color: #545454;
  23. }
  24. .inputText {
  25. margin-top: 1rem;
  26. }