auth.module.scss 801 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .auth-page {
  2. display: flex;
  3. justify-content: flex-start;
  4. align-items: center;
  5. height: 100%;
  6. width: 100%;
  7. flex-direction: column;
  8. .auth-header {
  9. display: flex;
  10. justify-content: space-between;
  11. width: 100%;
  12. padding: 10px;
  13. box-sizing: border-box;
  14. animation: slide-in-from-top ease 0.3s;
  15. }
  16. .auth-logo {
  17. margin-top: 10vh;
  18. transform: scale(1.4);
  19. }
  20. .auth-title {
  21. font-size: 24px;
  22. font-weight: bold;
  23. line-height: 2;
  24. margin-bottom: 1vh;
  25. }
  26. .auth-tips {
  27. font-size: 14px;
  28. }
  29. .auth-input {
  30. margin: 3vh 0;
  31. }
  32. .auth-input-second {
  33. margin: 0 0 3vh 0;
  34. }
  35. .auth-actions {
  36. display: flex;
  37. justify-content: center;
  38. flex-direction: column;
  39. button:not(:last-child) {
  40. margin-bottom: 10px;
  41. }
  42. }
  43. }