From ce717bef7c5b925fb533696f136704105ab9977b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 28 Mar 2026 21:20:43 +0000 Subject: [PATCH 1/2] Initial plan From d0318d7bdad9f68380467e33a538726f76a26f25 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 28 Mar 2026 21:24:34 +0000 Subject: [PATCH 2/2] [Michael] fix explorer to use fixed positioning so it stays in view during scrolling Agent-Logs-Url: https://github.com/TemporalResearch/social2000/sessions/4902b756-08f5-41c6-a056-82cb6a110b9e Co-authored-by: lyncmi07 <8515907+lyncmi07@users.noreply.github.com> --- styles.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/styles.css b/styles.css index 38b6d73..97868f4 100644 --- a/styles.css +++ b/styles.css @@ -11,10 +11,13 @@ body { #browser-window { background: #c0c0c0; border: 2px outset #c0c0c0; - min-height: 100vh; + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; display: flex; flex-direction: column; - position: relative; } /* Title bar */ @@ -695,8 +698,6 @@ body { height: 18px; line-height: 18px; overflow: visible; - position: sticky; - bottom: 0; display: flex; align-items: center; }