Skip to content

Commit 03b5938

Browse files
cristipufuclaude
andcommitted
fix: align header heights across dev console panels
Use explicit h-10 (40px) on sidebar header, debug controls, and events/i/o/logs tab bar for consistent visual alignment. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 1e18bf0 commit 03b5938

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/uipath/dev/server/frontend/src/components/debug/DebugControls.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default function DebugControls({ runId, status, ws, breakpointNode }: Pro
2222

2323
return (
2424
<div
25-
className="flex items-center gap-1 px-4 py-2.5 border-b shrink-0"
25+
className="flex items-center gap-1 px-4 h-10 border-b shrink-0"
2626
style={{ borderColor: "var(--border)", background: "var(--bg-secondary)" }}
2727
>
2828
<span className="text-[10px] uppercase tracking-wider font-semibold mr-1" style={{ color: "var(--text-muted)" }}>

src/uipath/dev/server/frontend/src/components/layout/Sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default function Sidebar({ runs, selectedRunId, onSelectRun, onNewRun }:
2121
return (
2222
<aside className="w-44 bg-[var(--sidebar-bg)] border-r border-[var(--border)] flex flex-col">
2323
{/* Header */}
24-
<div className="px-3 py-2.5 border-b border-[var(--border)] flex items-center justify-between">
24+
<div className="px-3 h-10 border-b border-[var(--border)] flex items-center justify-between">
2525
<button
2626
onClick={onNewRun}
2727
className="flex items-center gap-1.5 cursor-pointer transition-opacity hover:opacity-80"

src/uipath/dev/server/frontend/src/components/runs/RunDetailsPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ export default function RunDetailsPanel({ run, ws }: Props) {
190190
>
191191
{/* Sidebar tab bar */}
192192
<div
193-
className="flex items-center gap-1 px-2 py-2.5 border-b shrink-0"
193+
className="flex items-center gap-1 px-2 h-10 border-b shrink-0"
194194
style={{ borderColor: "var(--border)", background: "var(--bg-secondary)" }}
195195
>
196196
{sidebarTabs.map((tab) => (

src/uipath/dev/server/static/assets/index--IuPRA2y.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/uipath/dev/server/static/assets/index-BmARla_h.js renamed to src/uipath/dev/server/static/assets/index-CNXXGSz4.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/uipath/dev/server/static/assets/index-CVcRN2Rb.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/uipath/dev/server/static/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>UiPath Developer Console</title>
77
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
8-
<script type="module" crossorigin src="/assets/index-BmARla_h.js"></script>
9-
<link rel="stylesheet" crossorigin href="/assets/index-CVcRN2Rb.css">
8+
<script type="module" crossorigin src="/assets/index-CNXXGSz4.js"></script>
9+
<link rel="stylesheet" crossorigin href="/assets/index--IuPRA2y.css">
1010
</head>
1111
<body>
1212
<div id="root"></div>

0 commit comments

Comments
 (0)