diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 1edf6010f7e..00000000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,32 +0,0 @@ - - -## Because - - - -## This PR - - - -## Issue - -Closes #XXXXX - -## Additional Information - - - -## Pull Request Requirements - -- [ ] I have thoroughly read and understand [The Odin Project Contributing Guide](https://github.com/TheOdinProject/.github/blob/main/CONTRIBUTING.md) -- [ ] The title of this PR follows the `location of change: brief description of change` format, e.g. `01-flex-center: Update self check` -- [ ] The `Because` section summarizes the reason for this PR -- [ ] The `This PR` section has a bullet point list describing the changes in this PR -- [ ] If this PR addresses an open issue, it is linked in the `Issue` section -- [ ] If applicable, I have ensured that the TOP solution files match the Desired Outcome image diff --git a/flex/01-flex-center/style.css b/flex/01-flex-center/style.css index e35feacd28d..52dbe94f0a5 100644 --- a/flex/01-flex-center/style.css +++ b/flex/01-flex-center/style.css @@ -3,6 +3,9 @@ border: 4px solid midnightblue; width: 400px; height: 300px; + display: flex; + justify-content: center; + align-items: center; } .box { diff --git a/flex/02-flex-header/style.css b/flex/02-flex-header/style.css index cb598c93548..07e5f098cf0 100644 --- a/flex/02-flex-header/style.css +++ b/flex/02-flex-header/style.css @@ -1,6 +1,10 @@ .header { font-family: monospace; background: papayawhip; + display: flex; + align-items: center; + justify-content: space-between; + padding: 8px } .logo { @@ -9,11 +13,16 @@ color: tomato; background: white; padding: 4px 32px; + justify-content: center; } ul { /* this removes the dots on the list items*/ list-style-type: none; + display: flex; + margin: 0; + padding: 0; + gap: 8px; } a { @@ -22,4 +31,4 @@ a { padding: 8px; /* this removes the line under the links */ text-decoration: none; -} \ No newline at end of file +} diff --git a/flex/03-flex-header-2/index.html b/flex/03-flex-header-2/index.html index 21d56170b0b..5fabc457da0 100644 --- a/flex/03-flex-header-2/index.html +++ b/flex/03-flex-header-2/index.html @@ -9,18 +9,22 @@