mirror of
https://github.com/logseq/logseq.git
synced 2026-05-29 23:19:38 +00:00
20 lines
289 B
CSS
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;
|
|
}
|
|
}
|