trilium/apps/client/src/widgets/containers/scrolling_container.css
Adorian Doran 2bf862d5b9
Some checks failed
Checks / main (push) Has been cancelled
style/note scrolling container: make the alignment of children more consistent
2025-12-28 19:20:46 +02:00

25 lines
565 B
CSS

.scrolling-container {
overflow: auto;
scroll-behavior: smooth;
position: relative;
> .inline-title,
> .note-detail > .note-detail-editable-text,
> .note-list-widget:not(.full-height) {
padding-inline: 24px;
}
}
.note-split.type-code:not(.mime-text-x-sqlite) {
&> .scrolling-container {
background-color: var(--code-background-color);
--scrollbar-background-color: var(--main-background-color);
}
.inline-title,
.title-actions {
background-color: var(--main-background-color);
}
}