Skip to content

Commit a09ec6b

Browse files
authored
Merge pull request #39 from prokube/issue-33
fix: align header bottom borders across all three columns
2 parents d0ab154 + 80bee5d commit a09ec6b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

app-prefixable/src/components/session-header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function SessionHeader(props: SessionHeaderProps) {
4040

4141
return (
4242
<header
43-
class="flex items-center justify-between px-4 py-2"
43+
class="flex items-center justify-between px-4 h-12"
4444
style={{
4545
background: "var(--background-base)",
4646
"border-bottom": "1px solid var(--border-base)",

app-prefixable/src/pages/layout.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -424,11 +424,11 @@ export function Layout(props: ParentProps) {
424424
{/* OpenCode Logo - navigates to home */}
425425
<button
426426
onClick={navigateToHome}
427-
class="w-full flex items-center justify-center py-3 transition-opacity hover:opacity-80"
427+
class="w-full h-12 flex items-center justify-center transition-opacity hover:opacity-80"
428428
style={{ "border-bottom": "1px solid var(--border-base)" }}
429429
title="Home"
430430
>
431-
<OpenCodeLogo class="w-8 h-10 rounded" />
431+
<OpenCodeLogo class="w-7 h-8 rounded" />
432432
</button>
433433

434434
{/* Project icons */}
@@ -544,7 +544,7 @@ export function Layout(props: ParentProps) {
544544
<div class="w-64 h-full flex flex-col">
545545
{/* Project Header with collapse toggle */}
546546
<div
547-
class="p-3 flex items-start gap-2"
547+
class="px-3 h-12 flex items-center gap-2"
548548
style={{ "border-bottom": "1px solid var(--border-base)" }}
549549
>
550550
<Show when={currentProject()}>

0 commit comments

Comments
 (0)