diff --git a/src/app.rs b/src/app.rs index 0c1730a..f8c91e3 100644 --- a/src/app.rs +++ b/src/app.rs @@ -290,13 +290,13 @@ fn ResponsibleNote(responsible: Responsible) -> impl IntoView { }; view! { -

+ "Asked by " {responsible.name.clone()} " — " "contact them" " if you get stuck." -

+ } } diff --git a/style/main.css b/style/main.css index 64f15af..440e2fe 100644 --- a/style/main.css +++ b/style/main.css @@ -269,12 +269,15 @@ 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. */ +/* Meta information under the question - same hue family as the + description but dimmer, and smaller: it matters less than what the + question itself says. */ .question-responsible { + display: block; text-align: center; color: var(--ink-dim); - font-size: 1.05rem; + opacity: 0.7; + font-size: 0.85rem; line-height: 1.6; margin: 0.6rem 1rem 1.8rem; }