fix(curriculum): correct attribute mismatch in step 109 of City Skyline (#64966)

This commit is contained in:
Lakshay Goyal
2026-01-02 16:49:13 +05:30
committed by GitHub
parent 710c793c7b
commit 2ee7c05544

View File

@@ -32,7 +32,7 @@ assert.match(new __helpers.CSSHelp(document).getStyle(".sky")?.background, /radi
You should give the `radial-gradient` a third color of `#bbeeff` at `100%`.
```js
assert.match(new __helpers.CSSHelp(document).getStyle(".sky")?.background, /radial-gradient\(rgb\(255, 207, 51\)( 0%)?, rgb\(255, 207, 51\) 20%, rgb\(255, 255, 102\) 21%, rgb\(187, 238, 255\) 100%\)/);
assert.match(new __helpers.CSSHelp(document).getStyle(".sky")?.background, /radial-gradient\(rgb\(255, 207, 51\)( 0%)?, rgb\(255, 207, 51\) 20%, rgb\(255, 255, 102\) 21%, rgb\(187, 238, 255\)( 100%)?\)/);
```
# --seed--