Skip to content

Commit

Permalink
fix: increase logo size (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteelWagstaff authored Dec 16, 2024
1 parent 2ba4767 commit 5ce30d8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
19 changes: 9 additions & 10 deletions assets/styles/layouts/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,35 @@
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,
.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;
}
}

Expand Down

0 comments on commit 5ce30d8

Please sign in to comment.