Files
logseq/src/main/frontend/components/journal.css
thezjy a4d0666bcc feat: use a button to load more journals (#1529)
* feat: use a button to load more journals

* feat: preserve the "scroll to load more" behavior

* ignore .clj-kondo all together

* enhance: load latest two journals by default

Co-authored-by: Tienson Qin <tiensonqin@gmail.com>
2021-03-25 11:45:31 +08:00

22 lines
366 B
CSS

#journals {
textarea {
word-break: break-word;
overflow: hidden;
resize: none;
}
.journal-item {
border-top: 1px solid;
border-top-color: var(--ls-border-color, #738694);
margin: 24px 0;
padding: 24px 0;
min-height: 250px;
&:first-child {
padding-top: 0;
border-top: none;
min-height: 500px;
}
}
}