fix: picasso-painting

This commit is contained in:
Shaun Hamilton
2021-12-01 20:14:32 +00:00
parent 5831c2345d
commit 7b32774462
3 changed files with 15 additions and 1 deletions

View File

@ -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--

View File

@ -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');
``` ```

View File

@ -381,3 +381,13 @@ body {
--fcc-editable-region-- --fcc-editable-region--
``` ```
# --solutions--
```html
// TODO: Add solution once step 070 is fixed!
```
```css
```