correct video element order

This commit is contained in:
Simon
2026-02-09 22:08:28 +00:00
parent 3d81b6aae7
commit 81597c3bb2
2 changed files with 39 additions and 6 deletions

View File

@@ -769,8 +769,11 @@ body.theme-light .setting-item select option {
/* Grid Container */
.grid-container {
column-width: 260px;
column-gap: 16px;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
grid-auto-rows: 10px;
gap: 16px;
align-items: start;
padding: 24px;
max-width: var(--grid-max);
margin: 0 auto;
@@ -778,8 +781,9 @@ body.theme-light .setting-item select option {
@media (max-width: 768px) {
.grid-container {
column-width: 160px;
column-gap: 12px;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
grid-auto-rows: 10px;
gap: 12px;
padding: 16px;
}
@@ -882,8 +886,7 @@ body.theme-light .setting-item select option {
border: 1px solid var(--border);
box-shadow: 0 6px 16px var(--shadow);
position: relative;
break-inside: avoid;
margin-bottom: 16px;
margin-bottom: 0;
}
.video-card:hover {