Skip to content

Commit

Permalink
Merge pull request #21 from rocky-linux/develop
Browse files Browse the repository at this point in the history
Fix Logo Sizing on Sponsors/Partners/Support Providers
  • Loading branch information
FoggyMtnDrifter authored May 3, 2024
2 parents 21bbc4b + 035ac77 commit c260ff0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions app/[locale]/about/partners/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import type { Metadata } from "next";
import Link from "next/link";
import Image from "next/image";
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";

export const metadata: Metadata = {
title: "Partners - Rocky Linux",
Expand Down Expand Up @@ -50,7 +49,7 @@ const PartnersPage = () => {
) : (
<Image
alt={partner.name}
className="h-32 w-fit p-10 object-fit pointer-events-none"
className="h-32 w-auto p-10 object-fit pointer-events-none"
height={1000}
src={partner.src || ""}
width={1000}
Expand Down
2 changes: 1 addition & 1 deletion app/[locale]/about/sponsors/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const SponsorsPage = () => {
) : (
<Image
alt={sponsor.name}
className="h-32 w-fit p-10 object-fit pointer-events-none"
className="h-32 w-auto p-10 object-fit pointer-events-none"
height={1000}
src={sponsor.src || ""}
width={1000}
Expand Down
2 changes: 1 addition & 1 deletion app/[locale]/support/support-providers/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const SupportProvidersPage = () => {
) : (
<Image
alt={sponsor.name}
className="h-32 w-fit p-10 object-fit pointer-events-none"
className="h-32 w-auto p-10 object-fit pointer-events-none"
height={1000}
src={sponsor.src || ""}
width={1000}
Expand Down

0 comments on commit c260ff0

Please sign in to comment.