Possible to reduce height of today's empty journal?

I imagine it’s meant to give one space to ‘breathe/focus’ but it takes up a lot of space when sometimes I want to see a bit of the previous day as well, is there a way to reduce this height?

You can by editing custom.css (it can be edited from Logseq Settings > General or even better form /logseq folder inside your graph folder).

These are the CSS rules I use, tweak the values to your liking:

#journals .journal-item {
    min-height: 100px;
    padding: 8px 0;
}

#journals .journal-item:first-child {
    min-height: 300px;
}

Result:

2 Likes

Ah of course, this works perfectly, thank you!

1 Like