index.less 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .editBox {
  2. padding: 20rpx;
  3. .mt40 {
  4. margin-top: 40rpx;
  5. }
  6. .editRow {
  7. display: flex;
  8. align-items: center;
  9. justify-content: space-between;
  10. padding: 18rpx 40rpx;
  11. height: 50rpx;
  12. border-radius: 25rpx;
  13. margin-bottom: 12rpx;
  14. background-color: white;
  15. box-sizing: content-box;
  16. .name {
  17. font-size: 30rpx;
  18. }
  19. .right {
  20. display: flex;
  21. align-items: center;
  22. justify-content: flex-end;
  23. flex: 1;
  24. .avatar {
  25. width: 60rpx;
  26. height: 60rpx;
  27. border-radius: 50%;
  28. }
  29. .nickName {
  30. width: 400rpx;
  31. text-align: right;
  32. }
  33. .name {
  34. min-width: 400rpx;
  35. text-align: end;
  36. }
  37. .black {
  38. width: 16rpx;
  39. height: 30rpx;
  40. opacity: 0.8;
  41. margin-left: 24rpx;
  42. }
  43. }
  44. }
  45. .switchAccount {
  46. text-align: center;
  47. padding: 18rpx 40rpx;
  48. height: 50rpx;
  49. line-height: 50rpx;
  50. border-radius: 25rpx;
  51. margin-bottom: 12rpx;
  52. background-color: white;
  53. box-sizing: content-box;
  54. }
  55. }