diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 0e3ea3b..8edabc4 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,15 +1,19 @@ - + -- [ ] I have thoroughly read the [CSS Exercises Contributing Guide](https://github.com/TheOdinProject/css-exercises/blob/main/CONTRIBUTING.md) + +- [ ] I have thoroughly read and understand the [CSS Exercises Contributing Guide](https://github.com/TheOdinProject/css-exercises/blob/main/CONTRIBUTING.md) - [ ] The title of this PR is in `file/exercise/folder: brief description of changes` format e.g. `01 flex center: add hint for XYZ` -- [ ] If one exists, I have linked a related open issue to this PR by replacing `XXXXX` in Step 2 below with the issue number, e.g. `#2013` -- [ ] If changes were requested, I have made them in a timely manner and re-requested a review from the maintainer (top of the right sidebar) + + +- [ ] If one exists, I have linked a related open issue to this PR in Step 2 below +- [ ] If changes were requested, I have made them and re-requested a review from the maintainer (top of the right sidebar) **1. Description of the Changes** - + + **2. Related Issue** + Closes #XXXXX diff --git a/flex/04-flex-information/desired-outcome.png b/flex/04-flex-information/desired-outcome.png index aedd5b2..39f9815 100644 Binary files a/flex/04-flex-information/desired-outcome.png and b/flex/04-flex-information/desired-outcome.png differ diff --git a/flex/04-flex-information/solution/solution.css b/flex/04-flex-information/solution/solution.css index 69c3cb1..95a7ef8 100644 --- a/flex/04-flex-information/solution/solution.css +++ b/flex/04-flex-information/solution/solution.css @@ -37,11 +37,10 @@ body { .container { display: flex; - align-items: center; justify-content: center; gap: 52px; } .info { max-width: 200px; -} \ No newline at end of file +} diff --git a/flex/07-flex-layout-2/README.md b/flex/07-flex-layout-2/README.md index 8c9598a..30a8346 100644 --- a/flex/07-flex-layout-2/README.md +++ b/flex/07-flex-layout-2/README.md @@ -6,8 +6,9 @@ As with the previous exercise, we've left a little more for you to do. ### Hints - You will need to change the flex-direction to push the footer down. -- You will need to add some divs as containers to get things to line up correctly. +- You will need to add some divs as containers to get things to line up correctly. - `flex-wrap` will help get the cards aligned correctly. +- Make sure you define how much space the cards should take up, in order for `flex-wrap` to work as intended. ## Desired outcome