index.module.scss 970 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .avatar {
  2. position: relative;
  3. display: flex;
  4. padding: 10px;
  5. flex-direction: column;
  6. justify-content: center;
  7. align-items: center;
  8. background: var(--Grey-500, #98a2b3);
  9. box-sizing: border-box;
  10. border-radius: 50%;
  11. .text {
  12. color: var(---white, #fff);
  13. text-align: center;
  14. font-weight: 500;
  15. line-height: 150%;
  16. letter-spacing: 0.449px;
  17. }
  18. .host {
  19. position: absolute;
  20. left: 50%;
  21. transform: translateX(-50%);
  22. bottom: -12px;
  23. display: flex;
  24. width: 24px;
  25. height: 24px;
  26. padding: 2px;
  27. justify-content: center;
  28. align-items: center;
  29. gap: 10px;
  30. border-radius: 50%;
  31. border: 1px solid var(---white, #fff);
  32. background: var(--warning-500-base, #ffab08);
  33. }
  34. &:global(.default) {
  35. width: 32px;
  36. height: 32px;
  37. .text {
  38. font-size: 14px;
  39. }
  40. }
  41. &:global(.large) {
  42. display: flex;
  43. width: 120px;
  44. height: 120px;
  45. .text {
  46. font-size: 48px;
  47. }
  48. }
  49. }