Skip to content

Commit 208430f

Browse files
committed
improve: Silver スポンサーのロゴサイズと間隔を調整
- ロゴサイズを w-60 sm:w-80 に拡大(Gold より小さく In-Kind より大きく) - 間隔を gap-8 に統一(全画面サイズで 32px) - リンクありとリンクなしのサイズを統一 スポンサー階層: Diamond > Platinum > Gold > Silver > In-Kind ほぼ等間隔(80px)でサイズが段階的に変化
1 parent 8e3cc3c commit 208430f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_includes/sponsors.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,15 @@ <h3> ゴールドスポンサー </h3>
8282
<section class="sponsors mb-12">
8383
<h3> シルバースポンサー </h3>
8484
</section>
85-
<div class="flex flex-wrap justify-center items-center gap-8 sm:gap-4">
85+
<div class="flex flex-wrap justify-center items-center gap-8">
8686
{% for sponsor in sponsors_silver %}
8787
{% if sponsor.link != "" %}
8888
<a href="{{ sponsor.link }}" target="_blank" rel="noopener" class="block transition-transform hover:scale-105">
89-
<img src="/img/contests/sponsor-logos/{{ sponsor.img }}" alt="{{ sponsor.name }}" class="w-40 sm:w-56 h-auto max-h-32 object-contain">
89+
<img src="/img/contests/sponsor-logos/{{ sponsor.img }}" alt="{{ sponsor.name }}" class="w-60 sm:w-80 h-auto max-h-32 object-contain">
9090
</a>
9191
{% else %}
9292
<div data-proofer-ignore class="block transition-transform hover:scale-105">
93-
<img src="/img/contests/sponsor-logos/{{ sponsor.img }}" alt="{{ sponsor.name }}" class="w-28 sm:w-40 h-auto max-h-32 object-contain">
93+
<img src="/img/contests/sponsor-logos/{{ sponsor.img }}" alt="{{ sponsor.name }}" class="w-60 sm:w-80 h-auto max-h-32 object-contain">
9494
</div>
9595
{% endif %}
9696
{% endfor %}

0 commit comments

Comments
 (0)