Skip to content

Commit 2b94cad

Browse files
Fix: Resume button in nav bar (#738)
* fixed resume nav bar issue * created empty div * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * modified margin of empty div * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent d3fdcee commit 2b94cad

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/containers/greeting/Greeting.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ export default function Greeting() {
3636
>
3737
{greeting.subTitle}
3838
</p>
39+
<div id="resume" className="empty-div"></div>
3940
<SocialMedia />
4041
<div className="button-greeting-div">
4142
<Button text="Contact me" href="#contact" />

src/containers/greeting/Greeting.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,14 @@
2929
flex: 1;
3030
margin-bottom: 30px;
3131
}
32+
33+
.empty-div {
34+
margin-bottom: 40px;
35+
}
36+
3237
.button-greeting-div {
3338
display: flex;
34-
margin-top: 20px;
39+
margin-top: 40px;
3540
}
3641
.download-link-button {
3742
text-decoration: none;

0 commit comments

Comments
 (0)