Change order of "Scheduled and Deadline" Block on journal pages

Hello !
Best regards to the developers, this is a great software !
Is there a way to change the default queries order on journal pages ? I mean that I would like to set my custom queries (like NOW and NEXT) below the “Scheduled and Deadline” block.
Thanks

3 Likes

Answer to myself : add this in custom.css.

.journal.page {
  display: flex;
  flex-direction: column;
}

.journal > .references {
  order: 1;
}

#today-queries {
  order: 2;
}
1 Like