Skip to content

Commit ab273b9

Browse files
authored
Merge pull request #76 from rubyuy/fix-navbar-links
Fix navbar links
2 parents 03cd41d + 9cc2f86 commit ab273b9

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Diff for: _includes/default_header.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ <h1>
55
</h1>
66
<img src="{{ "logo.svg" | image_asset | buster }}" aria-hidden="true" focuseable="false"/>
77
</div>
8-
<div>
8+
<div id="about">
99
<div>
1010
<h2>Sé parte_</h2>
1111
</div>

Diff for: _includes/footer.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<footer>
2-
<div>
2+
<div id="contact">
33
<h1>
44
<a href="mailto:[email protected]" target="_blank">[email protected]</a>
55
</h1>

Diff for: _sass/footer.scss

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ footer {
44
background-color: #F6EEEC;
55
display: flex;
66
justify-content: space-between;
7+
align-items: center;
78

89
@media (max-width: 768px) {
910
padding: 2rem 1rem;
@@ -21,14 +22,15 @@ footer {
2122
h1 {
2223
font-size: 2rem;
2324
font-weight: bold;
24-
margin-bottom: 1rem;
25+
margin-bottom: 3rem;
26+
text-align: center;
2527

2628
&:hover {
2729
filter: drop-shadow(-0.5rem 0.5rem 0.5rem rgb(57, 126, 120));
2830
}
2931

3032
@media (max-width: 768px) {
31-
font-size: 1rem;
33+
font-size: 1.5rem;
3234
}
3335
}
3436

0 commit comments

Comments
 (0)