fix: picasso-painting
This commit is contained in:
@ -14,7 +14,10 @@ These dots are just a little too square. Give the `black-dot` class a `border-ra
|
|||||||
Your `.black-dot` selector should have a `border-radius` property set to `50%`.
|
Your `.black-dot` selector should have a `border-radius` property set to `50%`.
|
||||||
|
|
||||||
```js
|
```js
|
||||||
assert(new __helpers.CSSHelp(document).getStyle('.black-dot')?.borderRadius === '50%');
|
assert.equal(new __helpers.CSSHelp(document).getStyle('.black-dot')?.borderTopLeftRadius, '50%');
|
||||||
|
assert.equal(new __helpers.CSSHelp(document).getStyle('.black-dot')?.borderTopRightRadius, '50%');
|
||||||
|
assert.equal(new __helpers.CSSHelp(document).getStyle('.black-dot')?.borderBottomRightRadius, '50%');
|
||||||
|
assert.equal(new __helpers.CSSHelp(document).getStyle('.black-dot')?.borderBottomLeftRadius, '50%');
|
||||||
```
|
```
|
||||||
|
|
||||||
# --seed--
|
# --seed--
|
||||||
|
@ -14,6 +14,7 @@ Give the `eyes-div` a `z-index` of `3`.
|
|||||||
Your `#eyes-div` selector should have a `z-index` property set to `3`.
|
Your `#eyes-div` selector should have a `z-index` property set to `3`.
|
||||||
|
|
||||||
```js
|
```js
|
||||||
|
// @nhcarrigan The next step does not include this
|
||||||
assert(new __helpers.CSSHelp(document).getStyle('#eyes-div')?.zIndex === '3');
|
assert(new __helpers.CSSHelp(document).getStyle('#eyes-div')?.zIndex === '3');
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -381,3 +381,13 @@ body {
|
|||||||
--fcc-editable-region--
|
--fcc-editable-region--
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# --solutions--
|
||||||
|
|
||||||
|
```html
|
||||||
|
// TODO: Add solution once step 070 is fixed!
|
||||||
|
```
|
||||||
|
|
||||||
|
```css
|
||||||
|
|
||||||
|
```
|
||||||
|
Reference in New Issue
Block a user