add channel avatar

This commit is contained in:
2025-04-09 08:40:03 +04:00
parent f06c9a4f76
commit 2b8d6d94f9
3 changed files with 66 additions and 3 deletions
+30
View File
@@ -415,6 +415,36 @@ img {
font-size: 14px;
color: #555;
margin-bottom: 8px;
display: flex;
align-items: center;
overflow: hidden;
}
.channel-avatar {
width: 24px;
height: 24px;
border-radius: 50%;
margin-right: 8px;
object-fit: cover;
flex-shrink: 0;
border: 1px solid #e5e5e5;
}
.channel-avatar-placeholder {
width: 24px;
height: 24px;
border-radius: 50%;
margin-right: 8px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: #e5e5e5;
color: #666;
font-size: 16px;
}
.channel-name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;