| .dw-avatar { | |
| display: inline-flex; | |
| align-items: center; | |
| justify-content: center; | |
| flex-shrink: 0; | |
| border-radius: var(--radius-full); | |
| background: var(--color-accent-soft); | |
| color: var(--color-accent-text); | |
| font-weight: 600; | |
| overflow: hidden; | |
| } | |
| .dw-avatar img { | |
| width: 100%; | |
| height: 100%; | |
| object-fit: cover; | |
| } | |
| .dw-avatar--sm { | |
| width: 24px; | |
| height: 24px; | |
| font-size: var(--text-xs); | |
| } | |
| .dw-avatar--md { | |
| width: 32px; | |
| height: 32px; | |
| font-size: var(--text-sm); | |
| } | |
| .dw-avatar--lg { | |
| width: 48px; | |
| height: 48px; | |
| font-size: var(--text-lg); | |
| } | |