Skip to content

Commit

Permalink
Merge pull request #294 from NIAEFEUP/fix-double-scrollbar
Browse files Browse the repository at this point in the history
Fix double scroll bar
  • Loading branch information
rubuy-74 authored Nov 16, 2024
2 parents e8139fc + a730e8b commit 788c4e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/routes/(app)/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
:global(html) {
height: 100%;
min-height: 100vh;
overflow: scroll;
overflow: auto;
}
:global(body) {
height: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
overflow: scroll;
overflow: auto;
}
</style>
8 changes: 4 additions & 4 deletions src/routes/(app)/_components/layout/navbar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
aria-label="Navigation Bar"
>
<div class="flex w-full justify-start">
<a href="#/" class="flex items-center gap-4">
<a href="/" class="flex items-center gap-4">
<img src="/images/ni_logo.png" alt="NIAEFEUP's logo" width="40" height="40" />
<span>NIAEFEUP</span>
</a>
</div>
<div class="flex justify-end gap-7">
<a href="#/">Equipa</a>
<a href="#/">Projetos</a>
<a href="#/">Eventos</a>
<a href="/#/">Equipa</a>
<a href="/#/">Projetos</a>
<a href="/#/">Eventos</a>
<a href="/contacts">Contactos</a>
</div>
</nav>

0 comments on commit 788c4e3

Please sign in to comment.