Skip to content

Commit 5ce30d8

Browse files
fix: increase logo size (#87)
1 parent 2ba4767 commit 5ce30d8

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node: [ '14', '16' ]
13+
node: [ '18', '22' ]
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: Setup node

assets/styles/layouts/_header.scss

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,36 +4,35 @@
44
font-family: $font-family-sans-serif;
55
}
66

7+
.header__container {
8+
background: var(--header-bg);
9+
}
10+
711
.header__inside {
812
align-items: center;
913
display: flex;
1014
justify-content: space-between;
1115
max-width: $nav-max-width;
1216
margin: 0 auto;
13-
padding: 3.5rem 1rem 1.5rem;
14-
15-
@media #{$breakpoint-large} {
16-
padding: 3rem 1rem;
17-
}
17+
padding: 1.5rem 1rem;
1818
}
1919

2020
.header__logo--img,
2121
.header__logo--svg {
2222
display: inline-block;
2323
width: auto;
24-
max-width: 100px;
24+
max-width: 200px;
2525
height: auto;
26-
max-height: 1.5rem;
26+
max-height: 70px;
2727
margin-bottom: -1px;
2828
margin-right: 2px;
2929

3030
@media #{$breakpoint-medium} {
31-
max-width: 150px;
31+
max-width: 240px;
3232
}
3333

3434
@media #{$breakpoint-large} {
35-
max-width: 200px;
36-
max-height: 30px;
35+
max-width: 280px;
3736
}
3837
}
3938

0 commit comments

Comments
 (0)