Files
zap.stream/src/element/badge.css
verbiricha 7a030c9e53 feat: badges
- render badges in cards
- render mentioned badges in chat
- render host badge awards in chat
- render accepted badges next to username
2023-08-01 08:14:33 +02:00

37 lines
522 B
CSS

.badge {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
padding: 6px 0;
}
.badge .badge-details {
display: flex;
flex-direction: column;
align-items: center;
gap: 0;
}
.badge .badge-name {
margin: 0;
text-align: center;
font-size: 22px;
font-weight: 700;
}
.badge .badge-description {
margin: 0;
color: var(--text-muted);
}
.badge .badge-thumbnail {
max-width: 120px;
aspect-ration: 4/3;
}
.badge .badge-description {
font-size: 14px;
line-height: 20px;
}