Skip to content
Open
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
4 changes: 2 additions & 2 deletions apps/app/src/react-app/domains/session/chat/session-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ export function SessionPage(props: SessionPageProps) {
>
<ResizablePanel minSize="360px" className="min-w-0">
<main className="flex h-full min-w-0 flex-col overflow-hidden border-r border-border">
<header className="z-10 flex h-10 shrink-0 items-center justify-between border-b border-border px-4 md:px-6 mac:titlebar-drag mac:backdrop-blur-2xl mac:backdrop-saturate-150 @container/titlebar">
<header className="z-10 flex shrink-0 items-center justify-between border-b border-border py-1.5 pl-3 pr-1 mac:titlebar-drag mac:backdrop-blur-2xl mac:backdrop-saturate-150 @container/titlebar">
<div className="flex min-w-0 items-center gap-3">
{shellConfig.sidebar ? <SidebarTrigger className="mac:hidden" /> : null}
<h1 className="truncate text-[15px] font-semibold text-dls-text">
Expand Down Expand Up @@ -894,7 +894,7 @@ export function SessionPage(props: SessionPageProps) {
{!showDelayedSessionLoadingState && canRenderReactSurface ? (
<div className="flex h-full min-h-0 flex-col">
{sessionTabs.length > 0 ? (
<div className="flex h-10 shrink-0 items-center gap-1 overflow-x-auto border-b border-border bg-background/80 px-2 mac:backdrop-blur-xl">
<div className="flex py-2 shrink-0 items-center gap-1 overflow-x-auto border-b border-border bg-background/80 px-2 mac:backdrop-blur-xl">
{sessionTabs.map((tab) => {
const title = sessionTitleForId(props.sidebar.workspaceSessionGroups, tab.sessionId) || t("session.default_title");
const active = tab.sessionId === props.selectedSessionId;
Expand Down
10 changes: 5 additions & 5 deletions apps/app/src/react-app/domains/session/chat/status-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ type StatusIndicatorProps = {
function StatusIndicator(props: StatusIndicatorProps) {
if (props.loading || (props.openworkServerStatus === "disconnected" && props.initializing)) {
return (
<div className="flex min-w-0 items-center gap-2.5">
<div className="flex min-w-0 items-center gap-2.5 px-1">
<StatusDot variant="loading" />
<span className="shrink-0 font-medium text-foreground text-xs">
{t("session.preparing_workspace")}
Expand All @@ -82,7 +82,7 @@ function StatusIndicator(props: StatusIndicatorProps) {

if (props.clientConnected) {
return (
<div className="flex min-w-0 items-center gap-2.5">
<div className="flex min-w-0 items-center gap-2.5 px-1">
<Tooltip>
<TooltipTrigger render={<span className="inline-flex" />}>
<StatusDot variant="connected" />
Expand All @@ -105,7 +105,7 @@ function StatusIndicator(props: StatusIndicatorProps) {

if (props.openworkServerStatus === "limited") {
return (
<div className="flex min-w-0 items-center gap-2.5">
<div className="flex min-w-0 items-center gap-2.5 px-1">
<StatusDot variant="partial" />
<span className="shrink-0 font-medium text-foreground text-xs">
{t("status.limited_mode")}
Expand All @@ -120,7 +120,7 @@ function StatusIndicator(props: StatusIndicatorProps) {
}

return (
<div className="flex min-w-0 items-center gap-2.5">
<div className="flex min-w-0 items-center gap-2.5 px-1">
<StatusDot variant="disconnected" />
<span className="shrink-0 font-medium text-foreground text-xs">
{t("status.disconnected_label")}
Expand Down Expand Up @@ -266,7 +266,7 @@ export function StatusBar(props: StatusBarProps) {

return (
<div className="border-t border-border bg-background">
<div className="flex h-8 items-center justify-between gap-3 px-4 md:px-6">
<div className="flex h-8 items-center justify-between gap-3 px-2 md:px-2">
<StatusIndicator
clientConnected={props.clientConnected}
openworkServerStatus={props.openworkServerStatus}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export function SettingsShell(props: SettingsShellProps) {
if (props.compact) {
return (
<div className="flex h-full min-h-0 w-full flex-col overflow-hidden bg-background">
<header className="flex h-11 shrink-0 items-center justify-between gap-2 border-b border-dls-border px-3 mac:titlebar-drag">
<header className="flex py-1.5 px-1.5 shrink-0 items-center justify-between gap-2 border-b border-dls-border mac:titlebar-drag">
<div className="flex min-w-0 items-center gap-2 mac:titlebar-no-drag">
<SettingsSectionMenu
activeTab={props.activeTab}
Expand Down