From 7b3277446281d428b8c6b44e443ecf77eb0c8bb3 Mon Sep 17 00:00:00 2001 From: Shaun Hamilton Date: Wed, 1 Dec 2021 20:14:32 +0000 Subject: [PATCH] fix: picasso-painting --- .../step-029.md | 5 ++++- .../step-070.md | 1 + .../step-089.md | 10 ++++++++++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/learn-intermediate-css-by-building-a-picasso-painting/step-029.md b/curriculum/challenges/english/01-responsive-web-design/learn-intermediate-css-by-building-a-picasso-painting/step-029.md index 3dd04846f2..daf37e28f9 100644 --- a/curriculum/challenges/english/01-responsive-web-design/learn-intermediate-css-by-building-a-picasso-painting/step-029.md +++ b/curriculum/challenges/english/01-responsive-web-design/learn-intermediate-css-by-building-a-picasso-painting/step-029.md @@ -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%`. ```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-- diff --git a/curriculum/challenges/english/01-responsive-web-design/learn-intermediate-css-by-building-a-picasso-painting/step-070.md b/curriculum/challenges/english/01-responsive-web-design/learn-intermediate-css-by-building-a-picasso-painting/step-070.md index dc708c6feb..451e3c692c 100644 --- a/curriculum/challenges/english/01-responsive-web-design/learn-intermediate-css-by-building-a-picasso-painting/step-070.md +++ b/curriculum/challenges/english/01-responsive-web-design/learn-intermediate-css-by-building-a-picasso-painting/step-070.md @@ -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`. ```js +// @nhcarrigan The next step does not include this assert(new __helpers.CSSHelp(document).getStyle('#eyes-div')?.zIndex === '3'); ``` diff --git a/curriculum/challenges/english/01-responsive-web-design/learn-intermediate-css-by-building-a-picasso-painting/step-089.md b/curriculum/challenges/english/01-responsive-web-design/learn-intermediate-css-by-building-a-picasso-painting/step-089.md index 4ffe75cb72..1aa6cf5e9f 100644 --- a/curriculum/challenges/english/01-responsive-web-design/learn-intermediate-css-by-building-a-picasso-painting/step-089.md +++ b/curriculum/challenges/english/01-responsive-web-design/learn-intermediate-css-by-building-a-picasso-painting/step-089.md @@ -381,3 +381,13 @@ body { --fcc-editable-region-- ``` + +# --solutions-- + +```html +// TODO: Add solution once step 070 is fixed! +``` + +```css + +```