Skip to content

Commit befaab8

Browse files
committed
fix(ui): terminal top border render
1 parent 1a3ffbb commit befaab8

File tree

1 file changed

+2
-2
lines changed
  • apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/terminal

1 file changed

+2
-2
lines changed

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/terminal/terminal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1151,7 +1151,7 @@ export const Terminal = memo(function Terminal() {
11511151
<aside
11521152
ref={terminalRef}
11531153
className={clsx(
1154-
'terminal-container fixed right-[var(--panel-width)] bottom-0 left-[var(--sidebar-width)] z-10 overflow-hidden bg-[var(--surface-1)]',
1154+
'terminal-container fixed right-[var(--panel-width)] bottom-0 left-[var(--sidebar-width)] z-10 overflow-hidden border-[var(--border)] border-t bg-[var(--surface-1)]',
11551155
isToggling && 'transition-[height] duration-100 ease-out'
11561156
)}
11571157
onTransitionEnd={handleTransitionEnd}
@@ -1160,7 +1160,7 @@ export const Terminal = memo(function Terminal() {
11601160
tabIndex={-1}
11611161
aria-label='Terminal'
11621162
>
1163-
<div className='relative flex h-full border-[var(--border)] border-t'>
1163+
<div className='relative flex h-full'>
11641164
{/* Left Section - Logs */}
11651165
<div
11661166
className={clsx('flex flex-col', !selectedEntry && 'flex-1')}

0 commit comments

Comments
 (0)