From 2f1682f6772b245345b85d3e07411975f2678b70 Mon Sep 17 00:00:00 2001 From: Kristofer Koishigawa Date: Mon, 20 Dec 2021 16:28:20 +0900 Subject: [PATCH] Update curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-089.md Co-authored-by: Shaun Hamilton --- .../learn-css-colors-by-building-a-color-markers-set/step-089.md | 1 - 1 file changed, 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-089.md b/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-089.md index 0e5de37b21..6240048d1c 100644 --- a/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-089.md +++ b/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-089.md @@ -24,7 +24,6 @@ In the `.blue` CSS rule, add the `box-shadow` property with the values `0` for ` Your `.blue` CSS rule should have a `box-shadow` shorthand property and with the value `0 0 0 5px blue`. ```js -console.log(new __helpers.CSSHelp(document).getStyle('.blue')); assert(new __helpers.CSSHelp(document).getStyle('.blue')?.boxShadow === 'blue 0px 0px 0px 5px'); ```