settings.module.scss 423 B

12345678910111213141516171819202122232425262728293031323334
  1. @import "./window.scss";
  2. .settings {
  3. padding: 20px;
  4. overflow: auto;
  5. }
  6. .settings-title {
  7. font-size: 14px;
  8. font-weight: bolder;
  9. }
  10. .settings-sub-title {
  11. font-size: 12px;
  12. font-weight: normal;
  13. }
  14. .avatar {
  15. cursor: pointer;
  16. }
  17. .password-input-container {
  18. max-width: 50%;
  19. display: flex;
  20. justify-content: flex-end;
  21. .password-eye {
  22. margin-right: 4px;
  23. }
  24. .password-input {
  25. min-width: 80%;
  26. }
  27. }