From 313b1188198015fd18f552a54c8b7db76b7baf89 Mon Sep 17 00:00:00 2001 From: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com> Date: Wed, 28 May 2025 22:54:14 +0700 Subject: [PATCH] fix(curriculum): remove references to non-existent code examples (#60501) --- .../review-css-colors/671a90c1cf517678b130419e.md | 2 +- .../review-css-flexbox/671a940c69cdee833d4cc312.md | 2 +- .../review-css/671a9a0a140c2b9d6a75629f.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/curriculum/challenges/english/25-front-end-development/review-css-colors/671a90c1cf517678b130419e.md b/curriculum/challenges/english/25-front-end-development/review-css-colors/671a90c1cf517678b130419e.md index ced5f9fb4c8..8a8fdcf4048 100644 --- a/curriculum/challenges/english/25-front-end-development/review-css-colors/671a90c1cf517678b130419e.md +++ b/curriculum/challenges/english/25-front-end-development/review-css-colors/671a90c1cf517678b130419e.md @@ -18,7 +18,7 @@ dashedName: review-css-colors - **Color Wheel**: The color wheel is a circular diagram that shows how colors relate to each other. It's an essential tool for designers because it helps them to select color combinations. - **Analogous Color Schemes**: These color schemes create cohesive and soothing experiences. They have analogous colors, which are adjacent to each other in the color wheel. - **Complementary Color Schemes**: These color schemes create high contrast and visual impact. Their colors are located on the opposite ends of the color wheel, relative to each other. -- **Triadic Color Scheme**: This color scheme has vibrant colors. They are made from colors that are approximately equidistant from each other. If they are connected, they form an equilateral triangle on the color wheel, as you can see in this example. +- **Triadic Color Scheme**: This color scheme has vibrant colors. They are made from colors that are approximately equidistant from each other. If they are connected, they form an equilateral triangle on the color wheel. - **Monochromatic Color Scheme**: For this color scheme, all the colors are derived from the same base color by adjusting its lightness, darkness, and saturation. This evokes a feeling of unity and harmony while still creating contrast. ## Different Ways to Work with Colors in CSS diff --git a/curriculum/challenges/english/25-front-end-development/review-css-flexbox/671a940c69cdee833d4cc312.md b/curriculum/challenges/english/25-front-end-development/review-css-flexbox/671a940c69cdee833d4cc312.md index 6489fc6ef6f..bb9bb6c2a32 100644 --- a/curriculum/challenges/english/25-front-end-development/review-css-flexbox/671a940c69cdee833d4cc312.md +++ b/curriculum/challenges/english/25-front-end-development/review-css-flexbox/671a940c69cdee833d4cc312.md @@ -25,7 +25,7 @@ dashedName: review-css-flexbox - **`flex-wrap: nowrap;`**: This is the default value. Flex items won't be wrapped onto a new line, even if their width exceed the container's width. - **`flex-wrap: wrap;`**: This property will wrap the items when they exceed the width of their container. - **`flex-wrap: wrap-reverse;`**: This property will wrap flex items in reverse order. -- **`flex-flow` Property**: This property is a shorthand property for `flex-direction` and `flex-wrap`. In this example, we set `flex-direction` to `column` and `flex-wrap` to `wrap-reverse`. +- **`flex-flow` Property**: This property is a shorthand property for `flex-direction` and `flex-wrap`. ```css flex-flow: column wrap-reverse; diff --git a/curriculum/challenges/english/25-front-end-development/review-css/671a9a0a140c2b9d6a75629f.md b/curriculum/challenges/english/25-front-end-development/review-css/671a9a0a140c2b9d6a75629f.md index dba43f648fd..977a57f5e04 100644 --- a/curriculum/challenges/english/25-front-end-development/review-css/671a9a0a140c2b9d6a75629f.md +++ b/curriculum/challenges/english/25-front-end-development/review-css/671a9a0a140c2b9d6a75629f.md @@ -207,7 +207,7 @@ Review the concepts below to prepare for the upcoming exam. - **Color Wheel**: The color wheel is a circular diagram that shows how colors relate to each other. It's an essential tool for designers because it helps them to select color combinations. - **Analogous Color Schemes**: These color schemes create cohesive and soothing experiences. They have analogous colors, which are adjacent to each other in the color wheel. - **Complementary Color Schemes**: These color schemes create high contrast and visual impact. Their colors are located on the opposite ends of the color wheel, relative to each other. -- **Triadic Color Scheme**: This color scheme has vibrant colors. They are made from colors that are approximately equidistant from each other. If they are connected, they form an equilateral triangle on the color wheel, like you can see in this example. +- **Triadic Color Scheme**: This color scheme has vibrant colors. They are made from colors that are approximately equidistant from each other. If they are connected, they form an equilateral triangle on the color wheel. - **Monochromatic Color Scheme**: For this color scheme, all the colors are derived from the same base color by adjusting its lightness, darkness, and saturation. This evokes a feeling of unity and harmony while still creating contrast. ## Different Ways to Work with Colors in CSS @@ -298,7 +298,7 @@ Review the concepts below to prepare for the upcoming exam. - **`flex-wrap: nowrap;`**: This is the default value. Flex items won't be wrapped onto a new line, even if their width exceed the container's width. - **`flex-wrap: wrap;`**: This property will wrap the items when they exceed the width of their container. - **`flex-wrap: wrap-reverse;`**: This property will wrap flex items in reverse order. -- **`flex-flow` Property**: This property is a shorthand property for `flex-direction` and `flex-wrap`. In this example, we set `flex-direction` to `column` and `flex-wrap` to `wrap-reverse`. +- **`flex-flow` Property**: This property is a shorthand property for `flex-direction` and `flex-wrap`. ## The `justify-content` Property