Skip to content

Commit

Permalink
Merge pull request #26 from jadenet/main
Browse files Browse the repository at this point in the history
Remove background colors for Sponsor card
  • Loading branch information
tnonate authored Sep 29, 2024
2 parents 715afab + c5fafd7 commit c1b9bcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/guides/sidebar/Sponsor.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface Props {
const { name, link, source, description } = Astro.props;
---

<li class="w-full list-none rounded-lg bg-primary-dark py-0 sm:flex-1 lg:flex-auto" aria-label="Sponsor">
<li class="w-full list-none rounded-lg py-0 sm:flex-1 lg:flex-auto" aria-label="Sponsor">
<a href={link} target="_blank" class="align-center flex flex-col flex-wrap items-center justify-end gap-2 p-6">
<img class="max-w-40 object-contain motion-safe:transition-all" loading="lazy" src={source} alt={`${name} logo`} />
<p aria-label="Name" class="text-lg font-semibold" aria-label="Name">{name}</p>
Expand Down

0 comments on commit c1b9bcc

Please sign in to comment.