Skip to content

Commit

Permalink
Merge pull request #34 from GoCon/hytkgami/add-link-to-sessionize-on-…
Browse files Browse the repository at this point in the history
…header

タイムテーブルへのリンクを追加
  • Loading branch information
sago35 authored May 11, 2024
2 parents 2dc88a2 + cb4c75d commit c299ef8
Showing 1 changed file with 22 additions and 6 deletions.
28 changes: 22 additions & 6 deletions src/components/Header/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,26 @@ import { concatWithBase } from "@utils/concatWithBase";
>
</li>
<!-- ページの準備ができ次第コメントアウトを外す -->
<!-- <li><a href="#">Sessions</a></li>
<li><a href="#">Timetable</a></li>
<li><a href="#">Floor Guide</a></li>
<li><a href="#">Staff</a></li>
<li><a href="#">English</a></li> -->
<!-- <li><a href="#">Sessions</a></li> -->
<li>
<a
class="with-icon"
href="https://sessionize.com/api/v2/7zlcfd7c/view/GridSmart"
target="_blank"
>Timetable<i
><Image
src={concatWithBase("ic_external_link.svg")}
alt="FAQ External Link"
width="16"
height="16"
color={"#666"}
/></i
></a
>
</li>
<!-- <li><a href="#">Floor Guide</a></li> -->
<!-- <li><a href="#">Staff</a></li> -->
<!-- <li><a href="#">English</a></li> -->
</ul>
</nav>
</div>
Expand Down Expand Up @@ -121,11 +136,12 @@ import { concatWithBase } from "@utils/concatWithBase";

display: flex;
flex-direction: row;
gap: 16px;
gap: 20px;
font-size: 1.3rem;

@media (max-width: 768px) {
flex-direction: column;
gap: 16px;
}
}

Expand Down

0 comments on commit c299ef8

Please sign in to comment.