Skip to content

Commit 62ed0bd

Browse files
authored
Correct title size on multiple pages (#176)
1 parent b596361 commit 62ed0bd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lung_cancer_screening/questions/forms/asbestos_exposure_form.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def __init__(self, *args, **kwargs):
1313
choices=[(True, 'Yes'), (False, 'No')],
1414
widget=forms.RadioSelect,
1515
label="Have you ever worked in a job where you might have been exposed to asbestos?",
16-
label_classes="nhsuk-fieldset__legend--m",
16+
label_classes="nhsuk-fieldset__legend--l",
1717
coerce=lambda x: x == 'True',
1818
error_messages={
1919
'required': 'Select if you have been exposed to asbestos'

lung_cancer_screening/questions/forms/ethnicity_form.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def __init__(self, *args, **kwargs):
1414
choices=EthnicityValues.choices,
1515
label="What is your ethnic background?",
1616
widget=forms.RadioSelect,
17-
label_classes="nhsuk-fieldset__legend--m",
17+
label_classes="nhsuk-fieldset__legend--l",
1818
label_is_page_heading=True,
1919
hint="Your ethnicity may impact your chances of developing lung cancer.",
2020
error_messages={

lung_cancer_screening/questions/forms/gender_form.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def __init__(self, *args, **kwargs):
1414
choices=GenderValues.choices,
1515
widget=forms.RadioSelect,
1616
label="Which of these best describes you?",
17-
label_classes="nhsuk-fieldset__legend--m",
17+
label_classes="nhsuk-fieldset__legend--l",
1818
label_is_page_heading=True,
1919
hint="This information is used to find your NHS number and match with your GP record.",
2020
error_messages={

lung_cancer_screening/questions/forms/sex_at_birth_form.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def __init__(self, *args, **kwargs):
1414
choices=SexAtBirthValues.choices,
1515
widget=forms.RadioSelect,
1616
label="What was your sex at birth?",
17-
label_classes="nhsuk-fieldset__legend--m",
17+
label_classes="nhsuk-fieldset__legend--l",
1818
label_is_page_heading=True,
1919
hint="Your sex may impact your chances of developing lung cancer.",
2020
error_messages={

0 commit comments

Comments
 (0)