Skip to content

Commit 219cc3b

Browse files
limeburstclaude
andcommitted
control-plane: Fix save button alignment in filename header
Add w-full to the header's inner flex container so justify-between pushes the save button to the right end. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3eb7b0e commit 219cc3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

control-plane/src/components/browser/FileExplorer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ export default function FileExplorer({ initialFiles, userLoginName }: FileExplor
346346
<div className="flex-1 flex flex-col min-w-0 overflow-hidden">
347347
<div className="shrink-0 h-12 flex items-center px-3 border-b border-border bg-secondary">
348348
{selectedFile ? (
349-
<div className="flex items-center justify-between">
349+
<div className="flex items-center justify-between w-full">
350350
{isRenaming ? (
351351
<div className="flex items-center space-x-2 flex-1">
352352
<span>{getFileIcon(selectedFile.split('/').pop() || "", false)}</span>

0 commit comments

Comments
 (0)