From 2e21e80a3a80471202838e284262f2c99ee61a9e Mon Sep 17 00:00:00 2001 From: Leonardo Modesto Date: Sat, 15 Nov 2025 14:54:17 -0300 Subject: [PATCH] fix(curriculum): fix workshop CSS (#63865) --- .../5d822fd413a79914d39e98fe.md | 2 +- .../blocks/workshop-city-skyline/5d822fd413a79914d39e98fe.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/blocks/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e98fe.md b/curriculum/challenges/english/blocks/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e98fe.md index 69d6e68abbd..8214ee173ea 100644 --- a/curriculum/challenges/english/blocks/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e98fe.md +++ b/curriculum/challenges/english/blocks/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e98fe.md @@ -29,7 +29,7 @@ You should give `.bb2a` a `margin` of `auto`. assert.equal(new __helpers.CSSHelp(document).getStyle('.bb2a')?.margin, "auto"); ``` -You should give `.bb2a` a `width` of `auto`. +You should give `.bb2a` a `width` of `5vw`. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.bb2a')?.width, "5vw"); diff --git a/curriculum/challenges/english/blocks/workshop-city-skyline/5d822fd413a79914d39e98fe.md b/curriculum/challenges/english/blocks/workshop-city-skyline/5d822fd413a79914d39e98fe.md index 596566ea281..cf3bbd65a30 100644 --- a/curriculum/challenges/english/blocks/workshop-city-skyline/5d822fd413a79914d39e98fe.md +++ b/curriculum/challenges/english/blocks/workshop-city-skyline/5d822fd413a79914d39e98fe.md @@ -29,7 +29,7 @@ You should give `.bb2a` a `margin` of `auto`. assert.equal(new __helpers.CSSHelp(document).getStyle('.bb2a')?.margin, "auto"); ``` -You should give `.bb2a` a `width` of `auto`. +You should give `.bb2a` a `width` of `5vw`. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.bb2a')?.width, "5vw");