make anime sidebar 2-col grid by default

This commit is contained in:
2026-04-07 00:07:49 +02:00
parent aebbe9241b
commit 1a126e0405

View File

@@ -721,8 +721,8 @@ a:visited {
.anime-sidebar { .anime-sidebar {
flex-shrink: 0; flex-shrink: 0;
width: 240px; width: 240px;
display: flex; display: grid;
flex-direction: column; grid-template-columns: repeat(2, 1fr);
gap: 12px; gap: 12px;
padding: 12px; padding: 12px;
background: var(--surface); background: var(--surface);
@@ -903,9 +903,7 @@ a:visited {
.anime-sidebar { .anime-sidebar {
width: 100%; width: 100%;
order: 2; order: 2;
display: grid; grid-template-columns: repeat(3, 1fr);
grid-template-columns: repeat(2, 1fr);
gap: 12px;
} }
.anime-sidebar .sidebar-row { .anime-sidebar .sidebar-row {