Skip to content

Commit

Permalink
fix: SPのYouTubeのリンクを修正; z-indexを調整
Browse files Browse the repository at this point in the history
  • Loading branch information
r4ai committed Feb 25, 2024
1 parent e2846d0 commit d090a1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/SideBar/NavBar/NavBar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const { class: className, ...props } = Astro.props

<aside
class={twMerge(
"flex flex-row md:flex-col gap-1 md:gap-4 py-3 md:py-12 px-4 md:px-0 sticky top-0 md:h-dvh md:max-w-[25%] lg:max-w-[20%] xl:max-w-[15%] items-center md:items-start backdrop-blur-xl border-b md:border-b-0 dark:backdrop-brightness-[0.3] backdrop-brightness-150 md:backdrop-filter-none md:dark:backdrop-filter-none",
"flex flex-row md:flex-col gap-1 md:gap-4 py-3 md:py-12 px-4 md:px-0 sticky top-0 md:h-dvh md:max-w-[25%] lg:max-w-[20%] xl:max-w-[15%] items-center md:items-start backdrop-blur-xl border-b md:border-b-0 dark:backdrop-brightness-[0.3] backdrop-brightness-150 md:backdrop-filter-none md:dark:backdrop-filter-none z-30",
className,
)}
data-pagefind-ignore="all"
Expand Down
2 changes: 1 addition & 1 deletion src/components/SideBar/NavBar/NavDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const NavDrawer: Component<NavDrawer> = (props) => {
<a class="hover:text-fg-default" href="https://twitter.com/ricora_alg/">
{props.twitterIcon}
</a>
<a class="hover:text-fg-default" href="https://www.youtube.com/channel/UC4qBY_aaTvTkQ3E0PY89T2">
<a class="hover:text-fg-default" href="https://www.youtube.com/channel/UC4qBY_aaTvTkQ3E0PY89T2A">
{props.youtubeIcon}
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/BaseLayout/BaseLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,6 @@ const bundledThemeScript = "console.time('theme');" + result.outputFiles[0].text
</div>
<InfoBar />
</div>
<div id="modal" class="fixed left-0 top-0"></div>
<div id="modal" class="fixed left-0 top-0 z-40"></div>
</body>
</html>

0 comments on commit d090a1f

Please sign in to comment.