From d306a8d2794b752c3996f482299ef60cfbfb8d58 Mon Sep 17 00:00:00 2001 From: "Ian Clarke (aider)" Date: Tue, 3 Dec 2024 08:13:06 -0500 Subject: [PATCH] style: Reduce peer summary spacing for better layout --- hugo-site/layouts/shortcodes/summary-delta-sync/sync.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugo-site/layouts/shortcodes/summary-delta-sync/sync.html b/hugo-site/layouts/shortcodes/summary-delta-sync/sync.html index 4b535f6c..fffe8a06 100644 --- a/hugo-site/layouts/shortcodes/summary-delta-sync/sync.html +++ b/hugo-site/layouts/shortcodes/summary-delta-sync/sync.html @@ -375,7 +375,7 @@ }); // Adjust spacing based on screen size - const PEER_SPACING = window.innerWidth <= 768 ? 10 : 20; + const PEER_SPACING = window.innerWidth <= 768 ? 5 : 10; // Position summary1 to the right of peer1 const summary1Left = (peer1Rect.right - containerRect.left) + PEER_SPACING;