mirror of
https://github.com/zadam/trilium.git
synced 2025-12-31 11:44:23 +01:00
25 lines
565 B
CSS
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);
|
|
}
|
|
}
|