vvv
All checks were successful
/ upload (release) Successful in 19s

This commit is contained in:
pavel 2026-02-24 01:10:14 +01:00
commit a2557c0194
3 changed files with 21 additions and 5 deletions

View file

@ -527,11 +527,13 @@ select {
/* Video Grid */
.video-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 16px;
padding: 16px;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 12px;
padding: 12px;
background: var(--bg-tertiary);
max-height: 60vh;
flex-grow: 1;
min-height: 200px;
max-height: 100%;
overflow-y: auto;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}