Skip to content
Merged
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
3 changes: 1 addition & 2 deletions apps/desktop/src/components/ui/pane-tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ const TAB_VERTICAL =
'w-full max-h-48 justify-center not-first:border-t not-first:border-t-(--ui-stroke-quaternary) [writing-mode:vertical-rl]'

// Full height, so the active tab alone covers that row and cuts the rule.
const TAB_ACTIVE =
'h-full text-foreground [--tab-bg:var(--pane-tab-active-bg,var(--ui-editor-surface-background))]'
const TAB_ACTIVE = 'h-full text-foreground [--tab-bg:var(--pane-tab-active-bg,var(--ui-editor-surface-background))]'

// Inactive = gutter. Hover DARKENS: active is the lighter content surface, so a
// lightening wash made the two nearly indistinguishable.
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/external-link.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ describe('external link helpers', () => {
render(
<ExternalLink href="https://example.com/path/to/resource" showExternalIcon>
Example link
</ExternalLink>,
</ExternalLink>
)

const link = screen.getByRole('link', { name: 'Example link' })
Expand Down
Loading