Skip to content

Commit

Permalink
change breakpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
marc101101 committed Feb 16, 2024
1 parent 4520c7c commit 97fc85e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/routes/landing/About.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
subHeadline={'Hackaburg 2018 / 2019 / 2022 / 2023'}
id={'about'}
>
<div class="grid grid-cols-1 lg:grid-cols-3 md:grid-cols-2 gap-x-4 gap-y-6 md:mt-8 mt-4 sm:p-8">
<div class="grid grid-cols-1 md:grid-cols-3 gap-x-4 gap-y-6 md:mt-8 mt-4 sm:p-8">
{#each events as event, i}
<div class="glow bg-black rounded-2xl dark:bg-gray-800 ml-4 relative">
<div class="relative">
Expand Down
6 changes: 3 additions & 3 deletions src/routes/landing/Team.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
</p>
</div>
</div>
<div class="grid grid-cols-1 gap-x-8 gap-y-8 place-items-center lg:grid-cols-3 md:grid-cols-2">
<div class="grid grid-cols-1 gap-x-8 gap-y-8 place-items-center md:grid-cols-3">
{#each teams as team, i}
<div class="glow bg-black rounded-2xl dark:bg-gray-800 ml-4 relative min-h-100">
<div class="glow bg-black rounded-2xl dark:bg-gray-800 ml-4 relative min-h-100 h-max">
<img class="rounded-t-lg w-full object-fill" src={team.img} alt="" />
<div class="p-5 h-full">
<h5 class="mb-2 text-2xl font-bold tracking-tight text-white dark:text-white">
Expand All @@ -61,6 +61,6 @@

<style>
.min-h-100 {
min-height: 30rem;
min-height: 38rem;
}
</style>

0 comments on commit 97fc85e

Please sign in to comment.