From 587d849b6fe54a5b34de342917a0b01f47dc4da3 Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Sat, 4 Apr 2026 09:38:47 -0700 Subject: [PATCH] fix: move sidebar arrow hint to top-right instead of vertically centered The arrow was centered vertically which put it behind the feature cards. Now positioned at top: 80px where there's open space and it's more visible. Co-Authored-By: Claude Opus 4.6 (1M context) --- browse/src/welcome.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/browse/src/welcome.html b/browse/src/welcome.html index 759653f3..1dd367eb 100644 --- a/browse/src/welcome.html +++ b/browse/src/welcome.html @@ -42,9 +42,8 @@ /* Sidebar prompt — points RIGHT toward where sidebar opens */ .sidebar-prompt { position: fixed; - top: 50%; + top: 80px; right: 20px; - transform: translateY(-50%); z-index: 100; display: flex; align-items: center;