Skip to content

Commit

Permalink
fixing scaling on large screens
Browse files Browse the repository at this point in the history
  • Loading branch information
Jgerbrandt committed Jun 5, 2024
1 parent 5f153f6 commit 6609aa4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bio-rocket/src/routes/sponsors/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
</script>

<div class="container h-screen mx-auto flex flex-col justify-center items-center">
<h1 class="text-center text-3xl sm:text-5xl mt-[0%] sm:mt-8 mb-8 text-primary-500">Our Sponsors</h1>
<h1 class="text-center text-3xl sm:text-5xl mt-[0%] sm:mt-36 mb-8 text-primary-500">Our Sponsors</h1>
<h2 class="text-center text-2xl sm:text-4xl mt-8 mb-8 text-primary-500">Tier 1 Sponsors</h2>
<div class="w-full text-token flex justify-center items-center gap-8 sm:gap-16 mb-0 sm:mb-8">
<div class="w-[30%]">
<div class="w-[30%] sm:w-[15%]">
<svelte:component this={Tier1Logo} />
</div>
<div class="sponsor-placeholder"></div>
Expand All @@ -30,7 +30,7 @@
</div>

<div class="container mx-auto flex flex-col justify-top items-center">
<h1 class="text-center text-3xl sm:text-5xl mt-0 mb-8 text-primary-500">Sponsor Us</h1>
<h1 class="text-center text-3xl sm:text-5xl mt-0 sm:mt-48 mb-8 text-primary-500">Sponsor Us</h1>
<div class="w-full text-token grid grid-cols-1 sm:grid-cols-3 md:grid-cols-3 gap-4">
<div class="card bg-initial card-hover overflow-hidden">
<header>
Expand Down

0 comments on commit 6609aa4

Please sign in to comment.