mirror of
https://github.com/zotero/zotero.git
synced 2026-08-28 05:25:31 +00:00
29 lines
541 B
SCSS
29 lines
541 B
SCSS
note-editor {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
@include elements-custom-head;
|
|
}
|
|
|
|
tab-content {
|
|
note-editor.note-tab {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
links-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-inline: 8px;
|
|
line-height: normal;
|
|
|
|
border-top: 1px solid var(--fill-quinary);
|
|
|
|
collapsible-section > .body {
|
|
max-height: 25vh;
|
|
overflow-y: auto;
|
|
scrollbar-width: thin;
|
|
scrollbar-color: var(--color-scrollbar) var(--color-scrollbar-background);
|
|
padding-block: 1px; // Leave room for the editable-text focus ring
|
|
}
|
|
}
|