add default queue for cron jobs, fix mobile sidebar scroll
All checks were successful
deploy / deploy (push) Successful in 3m35s
All checks were successful
deploy / deploy (push) Successful in 3m35s
Cron-scheduled workers (retention, dead link checker, pruners) were enqueued to the default queue which wasn't configured — they never ran. Also add overflow-y scroll and sticky positioning to admin sidebar. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -63,6 +63,9 @@
|
||||
z-index: 1;
|
||||
width: 16rem;
|
||||
min-height: 100%;
|
||||
max-height: 100vh;
|
||||
max-height: 100dvh;
|
||||
overflow-y: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-color: var(--t-surface-sunken);
|
||||
@@ -78,6 +81,11 @@
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.admin-sidebar {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.admin-sidebar-overlay {
|
||||
display: none;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user