Skip to content

Commit

Permalink
Change tailwind bottom margin to padding for layouts
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlBest authored Mar 11, 2024
1 parent 9337c2d commit 845163b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/routes/(admin)/account/create_profile/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</svelte:head>

<div
class="text-center content-center max-w-lg mx-auto min-h-[100vh] mb-12 flex items-center place-content-center"
class="text-center content-center max-w-lg mx-auto min-h-[100vh] pb-12 flex items-center place-content-center"
>
<div class="flex flex-col w-64 lg:w-80">
<div>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(admin)/account/select_plan/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</svelte:head>

<div
class="text-center content-center min-h-[100vh] mb-12 mt-4 flex items-center place-content-center"
class="text-center content-center min-h-[100vh] pb-12 mt-4 flex items-center place-content-center"
>
<div class="flex flex-col w-full px-6">
<div>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(marketing)/login/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div
class="text-center content-center max-w-lg mx-auto min-h-[70vh] mb-12 flex items-center place-content-center"
class="text-center content-center max-w-lg mx-auto min-h-[70vh] pb-12 flex items-center place-content-center"
>
<div class="flex flex-col w-64 lg:w-80">
<slot />
Expand Down

0 comments on commit 845163b

Please sign in to comment.