Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions ui/desktop/src/components/BaseChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -381,9 +381,16 @@ function BaseChatContent({

{/* Chat container with sticky recipe header */}
<div className="flex flex-col flex-1 mb-0.5 min-h-0 relative">
<div className="absolute top-3 right-4 z-20 flex flex-row items-center gap-1">
<Goose className="size-5 goose-icon-animation" />
<span className="text-sm leading-none text-text-muted -translate-y-px">goose</span>
<div className="absolute top-3 right-4 z-[60] flex flex-row items-center gap-1">
<a
href="https://block.github.io/goose"
target="_blank"
rel="noopener noreferrer"
className="no-drag flex flex-row items-center gap-1 hover:opacity-80 transition-opacity"
>
<Goose className="size-5 goose-icon-animation" />
<span className="text-sm leading-none text-text-muted -translate-y-px">goose</span>
</a>
<EnvironmentBadge className="translate-y-px" />
</div>

Expand Down
11 changes: 9 additions & 2 deletions ui/desktop/src/components/sessions/SessionsInsights.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Greeting } from '../common/Greeting';
import { useNavigate } from 'react-router-dom';
import { Button } from '../ui/button';
import { ChatSmart } from '../icons/';
import { Goose } from '../icons/Goose';
import { Skeleton } from '../ui/skeleton';
import {
getSessionInsights,
Expand Down Expand Up @@ -119,7 +120,10 @@ export function SessionInsights() {
<div className="bg-background-muted flex flex-col h-full">
{/* Header container with rounded bottom */}
<div className="bg-background-default rounded-b-2xl mb-0.5">
<div className="px-8 pb-12 pt-19">
<div className="px-8 pb-12 pt-19 space-y-4">
<div className="origin-bottom-left goose-icon-animation">
<Goose className="size-8" />
</div>
<Greeting />
</div>
</div>
Expand Down Expand Up @@ -209,7 +213,10 @@ export function SessionInsights() {
<div className="bg-background-muted flex flex-col h-full">
{/* Header container with rounded bottom */}
<div className="bg-background-default rounded-b-2xl mb-0.5">
<div className="px-8 pb-12 pt-19">
<div className="px-8 pb-12 pt-19 space-y-4">
<div className="origin-bottom-left goose-icon-animation">
<Goose className="size-8" />
</div>
<Greeting />
</div>
</div>
Expand Down
Loading