Skip to content

Commit

Permalink
개편된 Gnb에 맞게 Sidebar 높이 조절
Browse files Browse the repository at this point in the history
  • Loading branch information
CirnoV committed Nov 19, 2024
1 parent f706873 commit 1632eca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/layouts/sidebar/LeftSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function LeftSidebar(props: { children: JSXElement }) {
style={{
transform: sidebarOpen.get() ? "none" : "translateX(-100%)",
}}
class="pointer-events-auto fixed h-[calc(100vh-3.5rem)] w-inherit flex flex-col border-r bg-white transition-transform <md:pl-6 md:!transform-none"
class="pointer-events-auto fixed h-[calc(100vh-6.5rem)] w-inherit flex flex-col border-r bg-white transition-transform <md:h-[calc(100vh-3.5rem)] <md:pl-6 md:!transform-none"
>
{props.children}
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(root)/release-notes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function ReleaseNotesLayout(props: Props) {
id="left-sidebar"
class="relative hidden w-65 shrink-0 text-slate-7 md:block"
>
<div class="fixed h-[calc(100%-3.5rem)] w-inherit overflow-y-scroll border-r bg-white">
<div class="fixed h-[calc(100%-6.5rem)] w-inherit overflow-y-scroll border-r bg-white">
<Show when={notes()}>
{(notes) => (
<Nav
Expand Down

0 comments on commit 1632eca

Please sign in to comment.