From b3a75baae705d9752cd4d8b5daae217b0045e237 Mon Sep 17 00:00:00 2001 From: staticWagomU Date: Thu, 18 Sep 2025 22:52:37 +0900 Subject: [PATCH 1/5] =?UTF-8?q?feat(Sponsors):=20=E4=B8=A1=E7=AB=AF?= =?UTF-8?q?=E3=81=AEpadding=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2025/src/components/Sponsors/Companies.astro | 42 +++++++++++--------- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/2025/src/components/Sponsors/Companies.astro b/2025/src/components/Sponsors/Companies.astro index 575a692e..4837d3ed 100644 --- a/2025/src/components/Sponsors/Companies.astro +++ b/2025/src/components/Sponsors/Companies.astro @@ -77,22 +77,26 @@ const getGridClasses = (rank: string, count: number) => { --- 企業スポンサー -{ - rankOrder.map( - (rank) => - sponsorsByRank[rank] && ( - <> -

- {rankNameMap[rank]} -

-
- {sponsorsByRank[rank].sort().map((sponsor) => ( - - ))} -
- - ), - ) -} +
+ { + rankOrder.map( + (rank) => + sponsorsByRank[rank] && ( + <> +

+ {rankNameMap[rank]} +

+
+ {sponsorsByRank[rank].sort().map((sponsor) => ( + + ))} +
+ + ), + ) + } +
From 668614da113eef6f01698ecef142fe1155427a68 Mon Sep 17 00:00:00 2001 From: staticWagomU Date: Thu, 18 Sep 2025 22:53:10 +0900 Subject: [PATCH 2/5] =?UTF-8?q?feat(Sponsors):=20=E5=90=84=E7=A4=BE?= =?UTF-8?q?=E3=81=AE=E7=94=BB=E5=83=8F=E3=81=AE=E3=82=AC=E3=82=BF=E3=81=A4?= =?UTF-8?q?=E3=81=8D=E3=82=92=E3=81=AA=E3=81=8F=E3=81=99=E3=81=9F=E3=82=81?= =?UTF-8?q?=E3=80=81bg-white=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2025/src/components/Sponsors/Company.astro | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/2025/src/components/Sponsors/Company.astro b/2025/src/components/Sponsors/Company.astro index d5327165..03272092 100644 --- a/2025/src/components/Sponsors/Company.astro +++ b/2025/src/components/Sponsors/Company.astro @@ -31,20 +31,24 @@ if (images[imagePath]) { // ランクごとのスタイル設定 const rankStyles = { platinum: { - container: "mb-4 flex items-center justify-center", - image: "h-28 w-auto object-contain md:h-36 lg:h-40", + container: + "mb-4 flex items-center justify-center bg-white p-6 rounded-lg border border-gray-100", + image: "h-32 w-auto object-contain md:h-36 lg:h-40", }, gold: { - container: "mb-3 flex items-center justify-center", - image: "h-20 w-auto object-contain md:h-24 lg:h-28", + container: + "mb-3 flex items-center justify-center bg-white p-6 rounded-lg border border-gray-100", + image: "h-24 w-auto object-contain md:h-24 lg:h-28", }, silver: { - container: "mb-2 flex items-center justify-center", - image: "h-14 w-auto object-contain md:h-16 lg:h-20", + container: + "mb-2 flex items-center justify-center bg-white p-6 rounded-lg border border-gray-100", + image: "h-16 w-auto object-contain md:h-16 lg:h-20", }, bronze: { - container: "mb-2 flex items-center justify-center", - image: "h-12 w-auto object-contain md:h-14 lg:h-16", + container: + "mb-2 flex items-center justify-center bg-white p-6 rounded-lg border border-gray-100", + image: "h-8 w-auto object-contain md:h-14 lg:h-16", }, }; From 55623b662fa73fb2469ffc5b0fadf4bcc1ab91c1 Mon Sep 17 00:00:00 2001 From: staticWagomU Date: Thu, 18 Sep 2025 23:11:34 +0900 Subject: [PATCH 3/5] =?UTF-8?q?feat(Sponsors):=20=E3=83=AD=E3=82=B4?= =?UTF-8?q?=E3=81=AE=E6=9C=80=E5=A4=A7=E6=A8=AA=E5=B9=85=E3=82=92=E5=89=8A?= =?UTF-8?q?=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2025/src/components/Sponsors/Company.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2025/src/components/Sponsors/Company.astro b/2025/src/components/Sponsors/Company.astro index 03272092..d7a3234e 100644 --- a/2025/src/components/Sponsors/Company.astro +++ b/2025/src/components/Sponsors/Company.astro @@ -57,7 +57,7 @@ const currentStyle = rankStyles[rank]; From d5de37ec7b9d9e3bfa163c73bb0c1a94207d638c Mon Sep 17 00:00:00 2001 From: staticWagomU Date: Thu, 18 Sep 2025 23:12:00 +0900 Subject: [PATCH 4/5] =?UTF-8?q?feat(Sponsors):=20=E5=90=84=E3=83=A9?= =?UTF-8?q?=E3=83=B3=E3=82=AF=E3=81=AE=E3=82=B5=E3=82=A4=E3=82=BA=E3=81=AB?= =?UTF-8?q?=E3=82=81=E3=82=8A=E3=81=AF=E3=82=8A=E3=82=92=E3=81=A4=E3=81=91?= =?UTF-8?q?=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2025/src/components/Sponsors/Company.astro | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/2025/src/components/Sponsors/Company.astro b/2025/src/components/Sponsors/Company.astro index d7a3234e..2645d0fb 100644 --- a/2025/src/components/Sponsors/Company.astro +++ b/2025/src/components/Sponsors/Company.astro @@ -32,23 +32,23 @@ if (images[imagePath]) { const rankStyles = { platinum: { container: - "mb-4 flex items-center justify-center bg-white p-6 rounded-lg border border-gray-100", - image: "h-32 w-auto object-contain md:h-36 lg:h-40", + "h-72 mb-4 flex items-center justify-center bg-white p-6 rounded-lg border border-gray-100", + image: "w-full h-full object-contain", }, gold: { container: - "mb-3 flex items-center justify-center bg-white p-6 rounded-lg border border-gray-100", - image: "h-24 w-auto object-contain md:h-24 lg:h-28", + "h-52 mb-3 flex items-center justify-center bg-white p-6 rounded-lg border border-gray-100", + image: "w-full h-full object-contain", }, silver: { container: - "mb-2 flex items-center justify-center bg-white p-6 rounded-lg border border-gray-100", - image: "h-16 w-auto object-contain md:h-16 lg:h-20", + "h-32 mb-2 flex items-center justify-center bg-white p-6 rounded-lg border border-gray-100", + image: "w-full h-full object-contain", }, bronze: { container: - "mb-2 flex items-center justify-center bg-white p-6 rounded-lg border border-gray-100", - image: "h-8 w-auto object-contain md:h-14 lg:h-16", + "h-22 mb-2 flex items-center justify-center bg-white p-6 rounded-lg border border-gray-100", + image: "w-full h-full object-contain", }, }; From c4632d65f59fd2416cd38dfb0d3572c3dc8a51e7 Mon Sep 17 00:00:00 2001 From: staticWagomU Date: Fri, 26 Sep 2025 23:19:00 +0900 Subject: [PATCH 5/5] =?UTF-8?q?fix(Sponsors):=20=E3=83=AD=E3=82=B4?= =?UTF-8?q?=E3=81=AE=E8=A6=8B=E3=81=88=E3=81=8B=E3=81=9F=E3=81=AB=E5=A4=A7?= =?UTF-8?q?=E3=81=8D=E3=81=AA=E5=B7=AE=E3=81=8C=E3=81=A7=E3=81=AA=E3=81=84?= =?UTF-8?q?=E3=82=88=E3=81=86=E3=81=AB=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2025/src/components/Sponsors/Company.astro | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/2025/src/components/Sponsors/Company.astro b/2025/src/components/Sponsors/Company.astro index 2645d0fb..e6ab25dc 100644 --- a/2025/src/components/Sponsors/Company.astro +++ b/2025/src/components/Sponsors/Company.astro @@ -53,6 +53,10 @@ const rankStyles = { }; const currentStyle = rankStyles[rank]; + +if (name === "NodeX 株式会社") { + currentStyle.container = currentStyle.container.replace("p-6", "p-1"); +} ---