mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
fix(curriculum): update registration form step 48 to have borderBottomStyle set to none (#67159)
This commit is contained in:
+2
-2
@@ -26,8 +26,8 @@ assert.exists(new __helpers.CSSHelp(document).getStyle('fieldset:last-of-type'))
|
||||
Your `fieldset:last-of-type` should have `border-bottom` set as `none`.
|
||||
|
||||
```js
|
||||
const borderBottom = new __helpers.CSSHelp(document).getStyle('fieldset:last-of-type')?.borderBottom;
|
||||
assert(borderBottom === 'none' || borderBottom === 'medium none' || borderBottom === 'medium');
|
||||
const borderBottomStyle = new __helpers.CSSHelp(document).getStyle('fieldset:last-of-type')?.borderBottomStyle;
|
||||
assert.equal(borderBottomStyle, 'none');
|
||||
```
|
||||
|
||||
# --seed--
|
||||
|
||||
Reference in New Issue
Block a user