Files
logseq/src/main/frontend/components/journal.css
2025-04-01 16:35:13 +08:00

20 lines
289 B
CSS

#journals {
textarea {
word-break: break-word;
overflow: hidden;
resize: none;
}
.journal-item {
@apply border-b min-h-[250px] pb-[64px] mb-[38px];
&:first-child {
@apply pt-0 min-h-[500px];
}
}
.journal-last-item {
@apply border-none;
}
}