fix(learn): update seed code for D3.js challenge (#40699)
Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com> Co-authored-by: Lucas Sorenson <lsorenson@sunsh1n3.com>
This commit is contained in:
@ -113,10 +113,10 @@ assert(
|
|||||||
.bar {
|
.bar {
|
||||||
width: 25px;
|
width: 25px;
|
||||||
height: 100px;
|
height: 100px;
|
||||||
/* Only change code below this line */
|
/* Add your code below this line */
|
||||||
|
|
||||||
|
|
||||||
/* Only change code above this line */
|
/* Add your code above this line */
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background-color: blue;
|
background-color: blue;
|
||||||
}
|
}
|
||||||
@ -130,7 +130,7 @@ assert(
|
|||||||
.enter()
|
.enter()
|
||||||
.append("div")
|
.append("div")
|
||||||
.attr("class", "bar")
|
.attr("class", "bar")
|
||||||
.style("height", (d) => (d + "px"))
|
.style("height", (d) => (d + "px")) // Change this line
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
```
|
```
|
||||||
|
Reference in New Issue
Block a user