From bbf0c9f202cf3bba754f60b96e28828c26d96fcc Mon Sep 17 00:00:00 2001 From: Giovanni Torelli <26353442+Torelli@users.noreply.github.com> Date: Wed, 11 Jan 2023 18:05:51 -0300 Subject: [PATCH 1/2] Fix exercise description In the previous exercise we already had to nest a flex container inside of another, so this is not the first time we are doing it. --- flex/03-flex-header-2/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flex/03-flex-header-2/README.md b/flex/03-flex-header-2/README.md index 0db0ee8..f8f7d32 100644 --- a/flex/03-flex-header-2/README.md +++ b/flex/03-flex-header-2/README.md @@ -4,7 +4,7 @@ We're starting to sneak in a little more CSS that you haven't seen yet. Don't wo For this one you will probably need to edit the HTML a little bit. Often with flexbox you need to add containers around things to make them go where you need them to go. In this case, you probably want to separate the items that go on the left and right of the header. -This is also the first example where you'll be nesting flex containers inside each other. +Just like you did in the previous exercise with the `ul`, you'll be nesting flex containers inside each other. ## Desired outcome As with the last example, this one needs to be flexible in the middle, with items pushed to the left and right. @@ -18,4 +18,4 @@ As with the last example, this one needs to be flexible in the middle, with item - There is 8px space between everything and the edge of the header. - Items are arranged horizontally as seen in the outcome image. - There is 16px between each item on both sides of the header. -- flex is used to arrange everything. \ No newline at end of file +- flex is used to arrange everything. From 56d22eeb6389840a2fbef2e28a54b8e0aa5f4394 Mon Sep 17 00:00:00 2001 From: Giovanni Torelli <26353442+Torelli@users.noreply.github.com> Date: Mon, 23 Jan 2023 16:20:41 -0300 Subject: [PATCH 2/2] Update flex/03-flex-header-2/README.md Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com> --- flex/03-flex-header-2/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flex/03-flex-header-2/README.md b/flex/03-flex-header-2/README.md index f8f7d32..3d95216 100644 --- a/flex/03-flex-header-2/README.md +++ b/flex/03-flex-header-2/README.md @@ -4,7 +4,7 @@ We're starting to sneak in a little more CSS that you haven't seen yet. Don't wo For this one you will probably need to edit the HTML a little bit. Often with flexbox you need to add containers around things to make them go where you need them to go. In this case, you probably want to separate the items that go on the left and right of the header. -Just like you did in the previous exercise with the `ul`, you'll be nesting flex containers inside each other. +Just like you did in the `02-flex-header` exercise, you'll be nesting flex containers inside each other. ## Desired outcome As with the last example, this one needs to be flexible in the middle, with items pushed to the left and right.