auth.module.scss 515 B

123456789101112131415161718192021222324252627282930313233343536
  1. .auth-page {
  2. display: flex;
  3. justify-content: center;
  4. align-items: center;
  5. height: 100%;
  6. width: 100%;
  7. flex-direction: column;
  8. .auth-logo {
  9. transform: scale(1.4);
  10. }
  11. .auth-title {
  12. font-size: 24px;
  13. font-weight: bold;
  14. line-height: 2;
  15. }
  16. .auth-tips {
  17. font-size: 14px;
  18. }
  19. .auth-input {
  20. margin: 3vh 0;
  21. }
  22. .auth-actions {
  23. display: flex;
  24. justify-content: center;
  25. flex-direction: column;
  26. button:not(:last-child) {
  27. margin-bottom: 10px;
  28. }
  29. }
  30. }