feat: send screen recordings #128

Merged
talksik merged 9 commits from screen-recording into master 2026-04-09 00:14:39 +00:00
2 changed files with 8 additions and 0 deletions
Showing only changes of commit acaedff73c - Show all commits
@@ -191,6 +191,11 @@ export function RecordingOverlay({
/>
)}
{/* Bottom gradient scrim for keyboard hint readability */}
{(isRecording || isReviewing) && !isLoading && (
<div className="pointer-events-none absolute inset-x-0 bottom-0 z-[5] h-1/4 bg-gradient-to-t from-black/60 to-transparent" />
)}
{/* Top center: recording indicator */}
<div className="absolute top-8 z-10">
{isRecording && !isLoading ? (
@@ -436,6 +436,9 @@ export function StreamView({ path, streamParticle }: StreamViewProps) {
disabled={streamParticle.status === "closed"}
/>
{/* Bottom gradient safe zone for keyboard hints */}
<div className="pointer-events-none absolute inset-x-0 bottom-0 z-[5] h-1/4 bg-gradient-to-t from-black/60 to-transparent" />
{/* BottomBar */}
<BottomBar
visible={controlsVisible}