From 87fd0153eee082fd3ad4d289a684776d61c23766 Mon Sep 17 00:00:00 2001 From: scheals Date: Tue, 18 Jan 2022 17:10:44 +0100 Subject: [PATCH 1/2] Add hint towards searching for styling links --- flex/06-flex-layout/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/flex/06-flex-layout/README.md b/flex/06-flex-layout/README.md index 6df76d2..33166ac 100644 --- a/flex/06-flex-layout/README.md +++ b/flex/06-flex-layout/README.md @@ -4,6 +4,7 @@ Flexbox is useful for laying out entire pages as well as the smaller components ### Hints - You may want to search something like `CSS remove list bullets`. We've done this for you in previous examples, but not here. Yay learning. +- Finding out how to style links in CSS might help you get rid of that pesky underscore... - We've added `height: 100vh` to the `body`... this makes the body exactly the same height as the viewport. To stick the footer to the bottom you will need to use flex and change the direction to column. ## Desired Outcome From c2ee35ca7d6cd84bb3a2f15d6f45ec3b77f27244 Mon Sep 17 00:00:00 2001 From: scheals <95084627+scheals@users.noreply.github.com> Date: Sat, 22 Jan 2022 16:38:54 +0100 Subject: [PATCH 2/2] Change wording from underscore to underline Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com> --- flex/06-flex-layout/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flex/06-flex-layout/README.md b/flex/06-flex-layout/README.md index 33166ac..e5fceeb 100644 --- a/flex/06-flex-layout/README.md +++ b/flex/06-flex-layout/README.md @@ -4,7 +4,7 @@ Flexbox is useful for laying out entire pages as well as the smaller components ### Hints - You may want to search something like `CSS remove list bullets`. We've done this for you in previous examples, but not here. Yay learning. -- Finding out how to style links in CSS might help you get rid of that pesky underscore... +- Finding out how to style links in CSS might help you get rid of that pesky underline decoration... - We've added `height: 100vh` to the `body`... this makes the body exactly the same height as the viewport. To stick the footer to the bottom you will need to use flex and change the direction to column. ## Desired Outcome