From 5726cd086bcfc48b5c9cb5824f79c1382b4166be Mon Sep 17 00:00:00 2001 From: Dewang601 <2002thapa@gmail.com> Date: Sat, 11 Jan 2025 18:10:58 +0530 Subject: [PATCH] fixed the logo in sponsors --- components/sponsors/GoldSponsorsList.ts | 2 +- components/sponsors/SilverSponsorsList.ts | 12 ++++++------ components/sponsors/SponsorsList.ts | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/components/sponsors/GoldSponsorsList.ts b/components/sponsors/GoldSponsorsList.ts index a46f464d7928..267fb6194fb1 100644 --- a/components/sponsors/GoldSponsorsList.ts +++ b/components/sponsors/GoldSponsorsList.ts @@ -6,6 +6,6 @@ export const goldSponsors: SponsorType[] = [ website: 'https://www.ibm.com', imageSrc: '/img/sponsors/ibm.png', altText: 'IBM', - imageClass: 'inline-block px-4 sm:h-14' + imageClass: 'inline-block px-4 h-14 sm:h-14' } ]; diff --git a/components/sponsors/SilverSponsorsList.ts b/components/sponsors/SilverSponsorsList.ts index e49c6667d886..69d9e4894027 100644 --- a/components/sponsors/SilverSponsorsList.ts +++ b/components/sponsors/SilverSponsorsList.ts @@ -6,28 +6,28 @@ export const Silversponsors: SponsorType[] = [ website: 'https://bump.sh/asyncapi?utm_source=asyncapi&utm_medium=referral&utm_campaign=sponsor', altText: 'OpenAPI & AsyncAPI API docs - Bump.sh', imageSrc: '/img/sponsors/bumpsh.svg', - imageClass: 'inline-block sm:h-9' + imageClass: 'inline-block h-9 sm:h-9' }, { name: 'Svix', website: 'https://www.svix.com/', altText: 'Svix', imageSrc: '/img/sponsors/svix_logo.svg', - imageClass: 'inline-block sm:h-9' + imageClass: 'inline-block h-9 sm:h-9' }, { name: 'HiveMQ', website: 'https://www.hivemq.com/', altText: 'HiveMQ', imageSrc: '/img/sponsors/hivemq_logo.png', - imageClass: 'inline-block sm:h-9' + imageClass: 'inline-block h-9 sm:h-9' }, { name: 'Aklivity', website: 'https://www.aklivity.io/', altText: 'Aklivity', imageSrc: '/img/sponsors/aklivity_logo.png', - imageClass: 'inline-block sm:h-9' + imageClass: 'inline-block h-9 sm:h-9' }, { name: 'SmartBear', @@ -41,13 +41,13 @@ export const Silversponsors: SponsorType[] = [ website: 'https://www.hdi.global/', altText: 'HDI', imageSrc: '/img/sponsors/hdi_logo.png', - imageClass: 'inline-block sm:h-9' + imageClass: 'inline-block h-9 sm:h-9' }, { name: 'Route4Me', website: 'https://route4me.com', altText: 'Best Route Planning and Route Optimization Software', imageSrc: '/img/sponsors/route4me_logo.png', - imageClass: 'inline-block sm:h-9' + imageClass: 'inline-block h-9 sm:h-9' } ]; diff --git a/components/sponsors/SponsorsList.ts b/components/sponsors/SponsorsList.ts index bdc75f3a7141..b216ca7872f4 100644 --- a/components/sponsors/SponsorsList.ts +++ b/components/sponsors/SponsorsList.ts @@ -6,20 +6,20 @@ export const sponsors: SponsorType[] = [ website: 'https://www.solace.com', imageSrc: '/img/sponsors/solace.png', altText: 'Solace', - imageClass: 'inline-block px-4 sm:h-12' + imageClass: 'inline-block px-4 h-12 sm:h-12' }, { name: 'Gravitee.io', website: 'https://www.gravitee.io', imageSrc: '/img/sponsors/gravitee.io_logo.jpg', altText: 'Gravitee.io', - imageClass: 'inline-block px-4 sm:h-14' + imageClass: 'inline-block px-4 h-14 sm:h-14' }, { name: 'Postman', website: 'https://www.postman.com', imageSrc: '/img/sponsors/postman.png', altText: 'Postman', - imageClass: 'inline-block px-4 sm:h-18' + imageClass: 'inline-block px-4 h-18 sm:h-18' } ];