Fix: better description for steps 12&15 in registration form (#47058)

* fix: text against challenge guideline

* fix: unclear challenge description step 15

* Apply suggestions from code review
This commit is contained in:
Ilenia
2022-08-08 19:08:24 +02:00
committed by GitHub
parent bc369e97d8
commit acc93a3a68
2 changed files with 2 additions and 2 deletions
@@ -7,7 +7,7 @@ dashedName: step-12
# --description--
Seeing as we plan on having three distinct sections to the form, add three `fieldset` elements within the `form`.
As the form will have three distinct sections, add three `fieldset` elements within the `form` element.
# --hints--
@@ -7,7 +7,7 @@ dashedName: step-15
# --description--
As `label` elements are `inline` by default, they appear on the same line as the text they are labelling. To make them appear on separate lines, add `display: block` to the `label` element, and add a `margin` of `0.5rem 0`, to separate them from each other.
As `label` elements are inline by default, they are all displayed side by side on the same line, making their text hard to read. To make them appear on separate lines, add `display: block` to the `label` element, and add a `margin` of `0.5rem 0`, to separate them from each other.
# --hints--