Skip to content

Commit

Permalink
Fixed scrolling of main page
Browse files Browse the repository at this point in the history
  • Loading branch information
rezk2ll committed Dec 1, 2023
1 parent 59843bd commit b8c863d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/landing/AccessSelect.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import Logo from '../logo/Logo.svelte';
</script>

<div class="w-full flex flex-col md:flex-row justify-center h-screen">
<div class="w-full flex flex-col md:flex-row justify-center h-screen lg:h-full">
<div
class="bg-white md:shadow-xl md:rounded-3xl flex flex-col space-y-5 w-full xl:w-10/12 2xl:w-7/12 md:px-16 py-6 h-full lg:h-fit"
id="start"
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<title>Sign up on Twake</title>
</svelte:head>

<div class="min-h-screen w-full overflow-hidden gradiant flex flex-col font-[Inter]">
<div class="w-full lg:h-screen overflow-hidden overflow-x-hidden gradiant flex flex-col font-[Inter]">
<slot />
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
$: formStore.set(form);
</script>

<div class="flex w-full min-h-screen md:py-5 lg:px-10 xl:px-[124px]">
<div class="flex w-full h-full md:py-5 lg:px-10 xl:px-[124px]">
<div class="flex flex-col lg:flex-row w-full overflow-hidden pt-9 ">
<Hero />
<AccessSelect />
Expand Down

0 comments on commit b8c863d

Please sign in to comment.