Skip to content

Commit

Permalink
Fixed overlapping content
Browse files Browse the repository at this point in the history
  • Loading branch information
Jannis Cloodt committed Jan 8, 2024
1 parent f80ddfc commit 803d136
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</script>


<div class="flex items-center pb-80 justify-center h-screen">
<div class="flex mt-10 justify-center">
<div class="w-full max-w-7xl bg-white shadow-md rounded-md p-6">
{#if $auth}
<h1 class="text-4xl font-bold mb-8">Welcome, {$auth.username}, To Cosmos Connect!</h1>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/routes/register/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</script>


<div class="flex items-center pb-80 justify-center h-screen">
<div class="flex items-center mt-10 justify-center h-screen">
<form method="post" class="w-full max-w-md bg-white shadow-md rounded-md p-6">

<Input name="username" label="Username" type="text" errors={form?.errors?.username}/>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/routes/yourProfile/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
export let data;
</script>

<div class="flex items-center justify-center h-screen pb-80">
<div class="flex justify-center mt-10">
<form method="post" class="w-full max-w-md bg-white shadow-md rounded-md p-6">
<div class="flex items-center mb-4">
<img src={img} alt="User Icon" class="w-8 h-8 mr-4">
Expand Down

0 comments on commit 803d136

Please sign in to comment.