Skip to content

Commit

Permalink
플랫폼 레이아웃 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
CirnoV committed May 29, 2024
1 parent 02fcdb6 commit 13fcbe1
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions src/pages/platform/[...slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,20 @@ const { Content } = await entry.render();
<Nav usages={usages} guides={guides} activeSlug={slug} />
</div>
</aside>
<div class="mx-auto shrink basis-200">
<article class="m-4 flex flex-col text-slate-700">
<div class="min-w-0 flex flex-1 justify-center">
<article
class="m-4 mb-40 min-w-0 flex shrink-1 basis-200 flex-col text-slate-700"
>
<prose.h1>{title}</prose.h1>
<Content components={prose} />
</article>
<div class="hidden shrink-10 basis-10 lg:block"></div>
<RightSidebar
lang="ko"
slug={slug}
editThisPagePrefix="https://github.com/portone-io/developers.portone.io/blob/main/src/content/platform/"
client:idle
/>
</div>
<RightSidebar
lang="ko"
slug={slug}
editThisPagePrefix="https://github.com/portone-io/developers.portone.io/blob/main/src/content/platform/"
client:idle
/>
</div>
</LayoutBase>

0 comments on commit 13fcbe1

Please sign in to comment.