fix: align breadcrumb bar, properties header, AI header to 52px

Match the note list header height (52px) across all panel headers for
consistent horizontal alignment. Previously breadcrumb bar, inspector
header, and AI panel header were 45px.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Test
2026-03-30 18:50:21 +02:00
parent 296d474732
commit 2dd6a94ef8
5 changed files with 6 additions and 6 deletions

View File

@@ -867,7 +867,7 @@ describe('NoteList — virtual list with large datasets', () => {
expect(screen.getByText('Note 499')).toBeInTheDocument()
})
it('search filters large dataset correctly', () => {
it('search filters large dataset correctly', { timeout: 15000 }, () => {
const entries = [
makeIndexedEntry(0, { title: 'Alpha Strategy' }),
...Array.from({ length: 998 }, (_, i) => makeIndexedEntry(i + 1, { title: `Filler Note ${i + 1}` })),