Channel Logos

This commit is contained in:
Gogs
2026-07-08 17:31:48 +02:00
parent 6f93ae60c0
commit 9831469bd0
135 changed files with 3387 additions and 26 deletions
+66
View File
@@ -120,3 +120,69 @@
background: var(--panel);
color: var(--text);
}
.channel-logo {
width: 42px;
height: 30px;
flex: 0 0 42px;
display: flex;
align-items: center;
justify-content: center;
background: var(--panel);
border: 1px solid var(--border);
border-radius: 0.4rem;
overflow: hidden;
}
.channel-logo img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.channel-logo span {
font-size: 1.1rem;
opacity: 0.75;
}
.channel-logo {
width: 42px;
height: 30px;
flex: 0 0 42px;
display: flex;
align-items: center;
justify-content: center;
background: var(--panel);
border: 1px solid var(--border);
border-radius: 0.4rem;
overflow: hidden;
}
.channel-logo img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.channel-logo span {
font-size: 1.1rem;
opacity: 0.75;
}
.mini-channel-logo {
width: 34px;
height: 24px;
object-fit: contain;
background: var(--panel);
border: 1px solid var(--border);
border-radius: 0.35rem;
padding: 2px;
flex: 0 0 34px;
}
.channel-header-with-logo,
.now-channel {
display: flex;
align-items: center;
gap: 0.5rem;
}