g
All checks were successful
/ upload (release) Successful in 20s

This commit is contained in:
pavel 2026-02-24 01:18:00 +01:00
commit e7c60e7c47
3 changed files with 35 additions and 21 deletions

View file

@ -527,15 +527,13 @@ select {
/* Video Grid */
.video-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 12px;
padding: 12px;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 16px;
padding: 16px;
background: var(--bg-tertiary);
flex-grow: 1;
min-height: 200px;
max-height: 100%;
flex: 1;
min-height: 0;
overflow-y: auto;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.video-grid.hidden {
@ -553,7 +551,8 @@ select {
.video-item video {
width: 100%;
height: 100%;
object-fit: cover;
object-fit: contain;
background: #000;
}
.video-item .video-label {