From 93d2c24fc9739501aac8401b9380290276f2f24e Mon Sep 17 00:00:00 2001 From: SteelWagstaff Date: Fri, 13 Dec 2024 12:21:05 -0800 Subject: [PATCH 1/3] fix: change logo size --- assets/styles/layouts/_header.scss | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/assets/styles/layouts/_header.scss b/assets/styles/layouts/_header.scss index 8cc9a1d..6456dd5 100644 --- a/assets/styles/layouts/_header.scss +++ b/assets/styles/layouts/_header.scss @@ -21,19 +21,18 @@ .header__logo--svg { display: inline-block; width: auto; - max-width: 100px; + max-width: 200px; height: auto; - max-height: 1.5rem; + max-height: 70px; margin-bottom: -1px; margin-right: 2px; @media #{$breakpoint-medium} { - max-width: 150px; + max-width: 240px; } @media #{$breakpoint-large} { - max-width: 200px; - max-height: 30px; + max-width: 280px; } } From 3861011f98399b12e7aa56384c772f14b12edeb8 Mon Sep 17 00:00:00 2001 From: SteelWagstaff Date: Fri, 13 Dec 2024 12:25:38 -0800 Subject: [PATCH 2/3] chore: update node versions in build step --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 73efef3..861204b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ '14', '16' ] + node: [ '18', '22' ] steps: - uses: actions/checkout@v3 - name: Setup node From 322af8fcdd6484e8b115c68007fc27ac90464f99 Mon Sep 17 00:00:00 2001 From: SteelWagstaff Date: Fri, 13 Dec 2024 17:38:49 -0800 Subject: [PATCH 3/3] fix: add color variable to new header__container class --- assets/styles/layouts/_header.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/assets/styles/layouts/_header.scss b/assets/styles/layouts/_header.scss index 6456dd5..461e5a5 100644 --- a/assets/styles/layouts/_header.scss +++ b/assets/styles/layouts/_header.scss @@ -4,17 +4,17 @@ font-family: $font-family-sans-serif; } +.header__container { + background: var(--header-bg); +} + .header__inside { align-items: center; display: flex; justify-content: space-between; max-width: $nav-max-width; margin: 0 auto; - padding: 3.5rem 1rem 1.5rem; - - @media #{$breakpoint-large} { - padding: 3rem 1rem; - } + padding: 1.5rem 1rem; } .header__logo--img,