Files
fusion/packages/dashboard/app/components/AgentAvatar.css
Fusion 964e111f8b feat(FN-3118): document avatar storage in agents and architecture
Added avatar storage and field documentation to the agents guide, with a minor reference added to the architecture docs.

Fusion-Task-Id: FN-3118
2026-05-05 20:47:37 -07:00

21 lines
355 B
CSS

.agent-avatar {
border-radius: 50%;
overflow: hidden;
background: var(--surface);
border: var(--btn-border-width) solid var(--border);
display: inline-flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.agent-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.agent-avatar-emoji {
line-height: 1;
}