Skip to content

Commit

Permalink
Merge pull request #51 from tokyorubykaigi12/terfno/fix-nav
Browse files Browse the repository at this point in the history
🐛 restore /talks
  • Loading branch information
Terfno authored Jan 14, 2025
2 parents 8bcdaf1 + 396ddd9 commit 1ddcaca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/Layouts/Header/Hamburger.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import CloseIcon from "../../icons/close.svg"
.hamburger {
height: 48px;
}
@media screen and (width > 720px) {
@media screen and (width > 800px) {
.hamburger {
display: none;
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Layouts/Header/Nav.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import NavItems from './NavItems.astro'
nav {
height: 24px;
}
@media screen and (width <= 720px) {
@media screen and (width <= 800px) {
nav {
display: none;
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/Layouts/Header/NavItems.astro
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ const { mobile } = Astro.props;
</style>

<ul class="navitems">
<!-- <li>
<li>
<a href={`${import.meta.env.BASE_URL}/talks`}>Talks</a>
</li> -->
</li>
<li>
<a href={`${import.meta.env.BASE_URL}/schedule/`}>Schedule</a>
</li>
Expand Down

0 comments on commit 1ddcaca

Please sign in to comment.