An easy to set up and operate PDS admin panel.
59

Configure Feed

Select the types of activity you want to include in your feed.

hotfix: graph overflow

Brooke (Jul 12, 2026, 2:46 AM -0700) d1ab2c2b 23799fe0

+2 -1
+2 -1
web/src/style.css
··· 323 323 324 324 .chart-months span { 325 325 flex: 1; 326 + min-width: 0; /* shrinkable, so a dozen labels never widen the page */ 326 327 text-align: center; 327 328 font-size: 14px; 328 329 color: var(--text-dim); ··· 392 393 393 394 @media (max-width: 640px) { 394 395 .charts-row { 395 - grid-template-columns: 1fr; 396 + grid-template-columns: minmax(0, 1fr); /* min-content of labels must not widen the page */ 396 397 } 397 398 } 398 399