opencode/packages/ui/src/components/avatar.css

42 lines
913 B
CSS
Raw Normal View History

2025-12-09 17:45:50 +08:00
[data-component="avatar"] {
--avatar-bg: var(--color-surface-info-base);
2025-12-12 05:39:38 +08:00
--avatar-fg: var(--color-text-base);
2025-12-09 17:45:50 +08:00
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
border-radius: var(--radius-sm);
border: 1px solid var(--color-border-weak-base);
font-family: var(--font-mono);
font-weight: 500;
text-transform: uppercase;
background-color: var(--avatar-bg);
2025-12-12 05:39:38 +08:00
color: var(--avatar-fg);
2025-12-09 17:45:50 +08:00
}
2025-12-10 05:21:04 +08:00
[data-component="avatar"][data-has-image] {
background-color: transparent;
border: none;
}
2025-12-09 17:45:50 +08:00
[data-component="avatar"][data-size="small"] {
width: 1.25rem;
height: 1.25rem;
font-size: 0.75rem;
line-height: 1;
}
[data-component="avatar"][data-size="normal"] {
width: 1.5rem;
height: 1.5rem;
font-size: 1.125rem;
line-height: 1.5rem;
}
[data-component="avatar"][data-size="large"] {
width: 2rem;
height: 2rem;
font-size: 1.25rem;
line-height: 2rem;
}