diff --git a/src/app.rs b/src/app.rs index 70e5e13..0c1730a 100644 --- a/src/app.rs +++ b/src/app.rs @@ -291,9 +291,7 @@ fn ResponsibleNote(responsible: Responsible) -> impl IntoView { view! {
- "Asked by " {responsible.name.clone()}
-
- "— "
+ "Asked by " {responsible.name.clone()} " — "
"contact them"
diff --git a/style/main.css b/style/main.css
index 5ba931c..64f15af 100644
--- a/style/main.css
+++ b/style/main.css
@@ -269,10 +269,12 @@ main.not-found {
border-bottom-color: var(--accent);
}
+/* Same hue and size as the hero description it sits under - one line,
+ reading as part of the question's own text. */
.question-responsible {
text-align: center;
color: var(--ink-dim);
- font-size: 0.85rem;
+ font-size: 1.05rem;
line-height: 1.6;
margin: 0.6rem 1rem 1.8rem;
}