Skip to content

Commit

Permalink
Merge pull request #9 from parceiroti/devel
Browse files Browse the repository at this point in the history
fix: navigation on smaller screens
  • Loading branch information
retrozinndev authored May 5, 2024
2 parents 9cd8e92 + 9f7c636 commit f02448a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Binary file added public/logo_caption_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions src/components/Navigation.astro
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,19 @@ import '../styles/styles.css'
.navbar .links li > a {
text-decoration: none;
}

@media screen and (max-width: 600px) {
.navbar {
height: 100px;
line-height: 1.8em;
}
.navbar .links {
align-content: center;
justify-content: center;
align-items: center;
overflow: hidden;
margin-right: 16px;
flex-wrap: wrap;
}
}
</style>

0 comments on commit f02448a

Please sign in to comment.