Skip to content

Commit

Permalink
fix: content was overflowing on smaller screens
Browse files Browse the repository at this point in the history
  • Loading branch information
kacperwyczawski committed Nov 21, 2023
1 parent 042c310 commit 9a03622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/community.astro
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ const teams = await getCollection("teams")
<ul class="flex flex-wrap gap-4 mt-4">
{teams.map((team) => (
<li>
<a href={"/community/teams/" + team.slug} class="!no-underline !text-white w-96 h-[11rem] block hover:bg-nixsemidarkblue group transition-[background] rounded-xl p-2">
<a href={"/community/teams/" + team.slug} class="!no-underline !text-white w-full lg:w-96 lg:h-[11rem] block hover:bg-nixsemidarkblue group transition-[background] rounded-xl p-2">
<div class="flex justify-between">
<h3 class="text-2xl">
<img src={"/images/teams/" + team.slug + ".svg"} alt="icon" class="inline invert -top-0.5 relative mr-2"/>
Expand Down

0 comments on commit 9a03622

Please sign in to comment.