From aebbe9241be82513538c5ea2b8bac9b860dee6c3 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Tue, 7 Apr 2026 00:05:15 +0200 Subject: [PATCH] make anime sidebar responsive 2-col grid on smaller desktops --- static/css/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index 8b11c38..c293314 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -903,6 +903,13 @@ a:visited { .anime-sidebar { width: 100%; order: 2; + display: grid; + grid-template-columns: repeat(2, 1fr); + gap: 12px; + } + + .anime-sidebar .sidebar-row { + flex-direction: column; } .relations-grid {