From a47aa863920438ba8be7a4153034e98ef08a4d5c Mon Sep 17 00:00:00 2001 From: Alex <alex.tran1502@gmail.com> Date: Thu, 23 Jan 2025 09:45:07 -0600 Subject: [PATCH] chore: minor form bottom padding increase (#15558) --- web/src/lib/components/layouts/AuthPageLayout.svelte | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/web/src/lib/components/layouts/AuthPageLayout.svelte b/web/src/lib/components/layouts/AuthPageLayout.svelte index 78ff67cfcb..c6ccec0f51 100644 --- a/web/src/lib/components/layouts/AuthPageLayout.svelte +++ b/web/src/lib/components/layouts/AuthPageLayout.svelte @@ -18,8 +18,11 @@ <Heading size="large" class="font-semibold" color="primary">{title}</Heading> </VStack> </CardHeader> - <CardBody> - {@render children?.()} - </CardBody> + + <div class="pb-4"> + <CardBody> + {@render children?.()} + </CardBody> + </div> </Card> </section>