Commit 3eb0c49d8f

3eb0c49d8f620da4362786dde1a51a8392416cf8

parent: c354c7dcad

Verified · cmc ci/build: success ci/test: success

cmc <hello@cleberg.net> · 2026-09-19 00:48 UTC

web: the dashboard's activity feed stacks after the queues on a phone

Ref #222
internal/web/static/style.css +3
@@ -1452,7 +1452,10 @@ svg.icon { vertical-align: -0.125em; }
14521452/* ---- breakpoints ---- */
14531453@media (max-width: 62rem) {
14541454 .withaside { grid-template-columns: 1fr; }
1455 /* checks and reviewers before a long thread; the dashboard's aside is
1456 the activity feed, which reads after the queues */
14551457 .withaside .aside { order: -1; }
1458 .withaside.feedlast .aside { order: 0; }
14561459}
14571460
14581461@media (max-width: 52rem) {
internal/web/templates/dashboard.html +1 −1
@@ -19,7 +19,7 @@
1919<h1>Dashboard</h1>
2020{{with .Rail.Pinned}}<p class="pinned" aria-label="Pinned repositories">{{range .}}<a class="chip" href="/{{.Owner}}/{{.Name}}"><span class="owner">{{.Owner}}/</span>{{.Name}}</a> {{end}}</p>{{end}}
2121
22<div class="withaside">
22<div class="withaside feedlast">
2323<div class="mainside">
2424
2525{{if .Reviews}}{{template "queue" dict "Title" "Waiting on your review" "Items" .Reviews "Kind" "mrs" "Empty" "Nothing waiting on you"}}{{end}}