order thinks on the front page by time of last edit

instead of time of creation
This commit is contained in:
Christian Lawson-Perfect 2025-05-04 08:22:31 +01:00
parent dcdb3d87be
commit 4f92cbf450
5 changed files with 35 additions and 3 deletions

View file

@ -33,7 +33,8 @@ body {
display: grid;
grid-template-rows: auto 1fr;
min-height: 100vh;
min-height: 100svh;
max-height: 100svh;
margin: 0;
padding: var(--half-spacing);
@ -128,8 +129,8 @@ input[type="file"] {
overflow: hidden;
--col-1-width: auto;
grid-template:
"nav editor preview" min-content
"log editor preview" 1fr
"nav editor preview" 1fr
"log log log" min-content
/ var(--col-1-width) var(--editor-size) var(--preview-size)
;