Files
2026-07-07 10:42:45 +02:00

35 lines
607 B
CSS

.channel-number {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 34px;
height: 26px;
margin-right: 10px;
border-radius: 999px;
background: var(--panel-3);
color: #dbeafe;
font-size: 0.85rem;
font-weight: 800;
}
.timeline-channel .channel-number {
margin-right: 0;
}
.timeline-channel-name {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.channel-logo {
width: 34px;
height: 24px;
object-fit: contain;
flex: 0 0 auto;
background: rgba(255, 255, 255, 0.08);
border-radius: 6px;
padding: 2px;
}