diff --git a/browse/src/welcome.html b/browse/src/welcome.html index ac07f5d1..7f03eb77 100644 --- a/browse/src/welcome.html +++ b/browse/src/welcome.html @@ -39,32 +39,38 @@ } .page { width: 100%; max-width: 860px; padding: 0 40px; } - /* Sidebar prompt */ + /* Sidebar prompt — points RIGHT toward where sidebar opens */ .sidebar-prompt { position: fixed; - top: 6px; - right: 95px; + top: 50%; + right: 20px; + transform: translateY(-50%); z-index: 100; display: flex; - flex-direction: column; align-items: center; + gap: 10px; transition: opacity 300ms ease-out; } - @keyframes bob { - 0%, 100% { transform: translateY(0); } - 50% { transform: translateY(-5px); } - } .sidebar-prompt .bubble { background: var(--amber-500); color: #000; - font-size: 12px; + font-size: 13px; font-weight: 600; - padding: 8px 14px; - border-radius: 8px; - max-width: 200px; + padding: 10px 16px; + border-radius: 10px; + max-width: 220px; text-align: left; line-height: 1.4; } + .sidebar-prompt .arrow-right { + font-size: 28px; + color: var(--amber-500); + animation: nudge 1.5s ease-in-out infinite; + } + @keyframes nudge { + 0%, 100% { transform: translateX(0); } + 50% { transform: translateX(6px); } + } .sidebar-prompt.hidden { opacity: 0; pointer-events: none; } /* Hero */ @@ -159,7 +165,8 @@