Responsible note back to the footer, above the question nav
Deploy / deploy (push) Successful in 1m2s

Under the title it read as asking for feedback before the visitor had
seen anything - it's meta, it closes the page rather than opening it.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Bendik Aagaard Lynghaug
2026-08-12 23:48:35 +02:00
co-authored by Claude Sonnet 5
parent f1d835d107
commit 3d8af23167
2 changed files with 9 additions and 10 deletions
+6 -6
View File
@@ -177,12 +177,6 @@ fn QuestionView(
description=question.description.clone()
show_yes=question_id == "/"
/>
{question
.responsible
.clone()
.map(|r| {
view! { <ResponsibleNote responsible=r/> }
})}
<div class="alternatives">
<For
each={
@@ -220,6 +214,12 @@ fn QuestionView(
}
/>
</div>
{question
.responsible
.clone()
.map(|r| {
view! { <ResponsibleNote responsible=r/> }
})}
<QuestionNav current_id=question_id has_chain=has_chain/>
}
.into_any()
+3 -4
View File
@@ -269,9 +269,8 @@ main.not-found {
border-bottom-color: var(--accent);
}
/* Meta information under the question - same hue family as the
description but dimmer, and smaller: it matters less than what the
question itself says. */
/* Meta information above the question nav - dimmer and smaller than
anything the question itself says. */
.question-responsible {
display: block;
text-align: center;
@@ -279,7 +278,7 @@ main.not-found {
opacity: 0.7;
font-size: 0.85rem;
line-height: 1.6;
margin: 0.6rem 1rem 1.8rem;
margin: 2.2rem 1rem 0;
}
.question-responsible a {