암호 키 생성 페이지에서 스크롤 관련 레이아웃 깨짐 이슈 해결

This commit is contained in:
static
2025-01-02 01:13:47 +09:00
parent cb279402af
commit 91f4c85f7a
3 changed files with 5 additions and 5 deletions

View File

@@ -4,8 +4,8 @@
let { children } = $props();
</script>
<div class="h-full w-full p-2">
<div class="h-dvh w-full p-2">
<AdaptiveDiv>
{@render children?.()}
{@render children()}
</AdaptiveDiv>
</div>

View File

@@ -55,7 +55,7 @@
<title>암호 키 생성하기</title>
</svetle:head>
<div class="flex h-full flex-col justify-between">
<div class="flex h-full flex-col justify-between overflow-auto">
<TitleDiv>
<div class="flex flex-col gap-y-2">
<h1 class="text-3xl font-bold">암호 키 생성하기</h1>

View File

@@ -4,9 +4,9 @@
let { children } = $props();
</script>
<div class="flex h-full w-full flex-col justify-between">
<div class="flex h-dvh w-full flex-col justify-between">
<div>
{@render children?.()}
{@render children()}
</div>
<BottomBar />
</div>