ProfileSetting.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. .row {
  2. display: flex;
  3. flex-direction: row;
  4. justify-content: space-between;
  5. margin-left: 28px;
  6. padding-left: 36px;
  7. margin-right: 28px;
  8. padding-right: 36px;
  9. position: relative;
  10. }
  11. .avatar {
  12. width: 80px;
  13. height: 80px;
  14. border-radius: 40px;
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. }
  19. .btn {
  20. position: absolute;
  21. left: 0;
  22. top: 0;
  23. right: 0;
  24. bottom: 0;
  25. opacity: 0;
  26. }
  27. .avatar_row {
  28. display: flex;
  29. flex-direction: row;
  30. align-items: center;
  31. justify-content: center;
  32. margin-top: 40px;
  33. margin-bottom: 40px;
  34. margin-left: 46px;
  35. margin-right: 46px;
  36. }
  37. .avatar_bg {
  38. height: 240px;
  39. width: 240px;
  40. position: relative;
  41. }
  42. .avatar {
  43. height: 240px;
  44. width: 240px;
  45. border-radius: 120px;
  46. }
  47. .camera_bg {
  48. position: absolute;
  49. right: 26px;
  50. bottom: 0;
  51. width: 48px;
  52. height: 48px;
  53. background-color: #1c1c1c;
  54. border-radius: 24px;
  55. align-items: center;
  56. justify-content: center;
  57. display: flex;
  58. }
  59. .camera {
  60. width: 32px;
  61. height: 28px;
  62. }