Skip to content

Commit

Permalink
Fix landing page z-axis (#873)
Browse files Browse the repository at this point in the history
  • Loading branch information
pilcrowonpaper authored Jul 25, 2023
1 parent b7b5c32 commit e7d2fdb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion documentation-v2/src/components/Menu.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type Props = {
---

<div
class="h-screen fixed left-0 top-0 border-r hidden lg:block lg:w-72 bg-white pt-24 lg:pt-16 w-full"
class="h-screen fixed left-0 top-0 border-r hidden lg:block lg:w-72 bg-white pt-24 lg:pt-16 w-full z-20"
id="menu"
>
<input type="hidden" value={Astro.props.collectionId} id="collection-id" />
Expand Down
6 changes: 3 additions & 3 deletions documentation-v2/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const contributors = contributorsResult.map((val) => {
<div
class="flex flex-col-reverse xl:flex-row gap-y-8 xl:gap-x-8 mb-8 rounded-xl bg-zinc-80 py-6 px-8 relative"
>
<div class="grow z-20">
<div class="grow z-10">
<Code code={code1} lang="sql" />
</div>
<div class="w-full xl:w-72 1.5xl:w-96">
Expand All @@ -164,7 +164,7 @@ const contributors = contributorsResult.map((val) => {
<div
class="flex flex-col-reverse xl:flex-row gap-y-8 gap-x-8 mb-8 rounded-xl bg-zinc-80 py-6 px-8 relative"
>
<div class="grow z-20">
<div class="grow z-10">
<Code code={code2} lang="ts" />
</div>
<div class="w-full xl:w-72 1.5xl:w-96">
Expand All @@ -183,7 +183,7 @@ const contributors = contributorsResult.map((val) => {
<div
class="flex flex-col-reverse xl:flex-row gap-y-8 gap-x-8 rounded-xl bg-zinc-80 py-6 px-8 relative"
>
<div class="grow z-20">
<div class="grow z-10">
<Code code={code3} lang="ts" />
</div>
<div class="w-full xl:w-72 1.5xl:w-96">
Expand Down

1 comment on commit e7d2fdb

@vercel
Copy link

@vercel vercel bot commented on e7d2fdb Jul 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.