From 548c613c12c12b72b7a803d4b7a9c890235e644c Mon Sep 17 00:00:00 2001 From: towards-a-new-leftypol Date: Sun, 17 Mar 2024 16:54:27 -0400 Subject: [PATCH] Homepage: remove sidebar border, make sidebar wider (300px instead of 200px) --- templates/themes/categories/frames.html | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/templates/themes/categories/frames.html b/templates/themes/categories/frames.html index fbaf9a62..890963b7 100644 --- a/templates/themes/categories/frames.html +++ b/templates/themes/categories/frames.html @@ -10,11 +10,8 @@ .sidebar { grid-column: 1; grid-row: 1 / 3; - width: 200px; - border-right-color: gray; - border-right-style: solid; - border-width: 2px; - margin-right: 15px; + width: 100%; + margin-right: 15px; } .introduction { @@ -33,7 +30,7 @@ body { display: grid; - grid-template-columns: repeat(auto-fill,minmax(200px, 1fr)); + grid-template-columns: repeat(auto-fill,minmax(300px, 1fr)); gap: 20px; }