fix(layout): title not visible on dark code theme

This commit is contained in:
Elian Doran 2025-12-09 16:27:19 +02:00
parent f8447d923e
commit cae892a971
No known key found for this signature in database
2 changed files with 7 additions and 3 deletions

View File

@ -146,9 +146,6 @@ export default class DesktopLayout {
.child(new ContentHeader()
.child(new FlexContainer("row")
.class("title-row")
.css("height", "50px")
.css("min-height", "50px")
.css("align-items", "center")
.child(<NoteIconWidget />)
.child(<NoteTitleWidget />)
)

View File

@ -2555,3 +2555,10 @@ iframe.print-iframe {
}
}
}
body.desktop .title-row {
height: 50px;
min-height: 50px;
align-items: center;
background: var(--note-split-background-color, var(--main-background-color));
}