mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
fix(curriculum): updated registration form step 44 to have borderBottomStyle set to none (#67026)
This commit is contained in:
+2
-2
@@ -30,8 +30,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.oneOf(borderBottom, ['none', 'medium none', '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