Skip to content

Commit a1a98a2

Browse files
Tweak feedback wording (#273)
Also switch to 5 options, and wider buttons. ![Screenshot 2025-03-27 at 16 24 06](https://github.com/user-attachments/assets/262d21f4-bf31-4dd6-8b8c-b06a09afcd9c)
1 parent de90eee commit a1a98a2

File tree

2 files changed

+26
-5
lines changed

2 files changed

+26
-5
lines changed

app/assets/sass/components/_button.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
}
2323
}
2424

25+
.app-button--min-width {
26+
min-width: 80px;
27+
}
28+
2529

2630
.app-button--loading {
2731
position: relative;

app/views/_feedback-panel.html

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,45 @@ <h2 class="app-feedback-panel__title">You’ve just recorded your 5th vaccinatio
1010

1111

1212
<fieldset class="nhsuk-fieldset">
13-
<legend class="nhsuk-fieldset__legend nhsuk-u-margin-bottom-4">How have you found using this service?</legend>
13+
<legend class="nhsuk-fieldset__legend nhsuk-u-margin-bottom-4">How was your experience of recording vaccinations?</legend>
1414

1515
<div class="app-button-group nhsuk-u-margin-bottom-0">
16+
17+
{{ button({
18+
text: "Very easy",
19+
classes: "app-button--outlined app-button--small app-button--min-width",
20+
attributes: {
21+
"data-thanks": "Thank you. Do you want to tell us more?"
22+
}
23+
}) }}
24+
1625
{{ button({
1726
text: "Easy",
18-
classes: "app-button--outlined app-button--small",
27+
classes: "app-button--outlined app-button--small app-button--min-width",
1928
attributes: {
2029
"data-thanks": "Thank you. Do you want to tell us more?"
2130
}
2231
}) }}
2332

2433
{{ button({
2534
text: "Ok",
26-
classes: "app-button--outlined app-button--small",
35+
classes: "app-button--outlined app-button--small app-button--min-width",
36+
attributes: {
37+
"data-thanks": "Thank you. Do you want to tell us more?"
38+
}
39+
}) }}
40+
41+
{{ button({
42+
text: "Difficult",
43+
classes: "app-button--outlined app-button--small app-button--min-width",
2744
attributes: {
2845
"data-thanks": "Thank you. Do you want to tell us more?"
2946
}
3047
}) }}
3148

3249
{{ button({
33-
text: "Hard",
34-
classes: "app-button--outlined app-button--small",
50+
text: "Very difficult",
51+
classes: "app-button--outlined app-button--small app-button--min-width",
3552
attributes: {
3653
"data-thanks": "Thank you. Do you want to tell us more?"
3754
}

0 commit comments

Comments
 (0)