Center single-paragraph items pane status messages when they wrap

Status messages were left aligned for the multi-paragraph intro text,
but in a narrow window, that made single lines that wrapped sit
off-center, so center those instead.

(cherry picked from commit 0e00c1ce51)
This commit is contained in:
Dan Stillman 2026-09-02 17:22:54 -04:00
parent d62b044386
commit 516a98d0db

View file

@ -17,6 +17,11 @@
text-align: left;
}
/* Single-paragraph status messages stay centered when they wrap */
.items-tree-message > p:only-child {
text-align: center;
}
.items-tree-message div.publications p {
font-size: 1.2em;
}