mirror of
https://github.com/zadam/trilium.git
synced 2026-02-18 04:17:04 +01:00
26 lines
574 B
CSS
26 lines
574 B
CSS
.note-list-widget {
|
|
min-height: 0;
|
|
max-width: var(--max-content-width); /* Inherited from .note-split */
|
|
|
|
overflow: visible;
|
|
contain: none !important;
|
|
|
|
&.full-height {
|
|
overflow: auto;
|
|
}
|
|
}
|
|
|
|
body.prefers-centered-content .note-list-widget:not(.full-height) {
|
|
/* Horizontally center the widget in its parent when the "Keep content centered" option is on */
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.note-list-widget.full-height,
|
|
.note-list-widget.full-height .note-list-widget-content {
|
|
height: 100%;
|
|
}
|
|
|
|
.note-list-widget video {
|
|
height: 100%;
|
|
}
|