Skip to content

Commit a545409

Browse files
committed
💥 fix: empty scroll bars on chrome
1 parent 72942f0 commit a545409

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/Footer.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const tr = useTranslations(Astro.params.lang as never);
1515
.footer {
1616
margin-left: 0px;
1717
color: lightgray;
18-
overflow: scroll;
18+
overflow: hidden;
1919
display: block;
2020
width: 100%;
2121
font-family: Free Sans, Open Sans, Segoe UI Alternative, Segoe UI, sans-serif;

src/components/NavBar.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ const tr = useTranslations(lang as never);
1515
<nav class="navbar">
1616
<ul class="links">
1717
<li class="link">
18-
<a href={ `/${lang}/#top` } target="_self">{ tr("nav.home") }</a>
18+
<a href={ `/${lang}/#` } target="_self">{ tr("nav.home") }</a>
1919
</li>
2020
<li class="link">
21-
<a href={ `/${lang}/#chars` } target="_self">{ tr("nav.about") }</a>
21+
<a href={ `/${lang}/#about` } target="_self">{ tr("nav.about") }</a>
2222
</li>
2323
<li class="link">
2424
<a href={ `/${lang}/projects` } target="_self">{ tr("nav.projects") }</a>

0 commit comments

Comments
 (0)