Skip to content

Commit 3cd2396

Browse files
committed
Fix remaining logo overlap on downloads and jobs
1 parent 5c0b8e6 commit 3cd2396

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/sponsors/templates/sponsors/partials/sponsors-list.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{% cache 86400 CACHED_DOWNLOAD_SPONSORS_LIST %}
99
<h2 class="widget-title" style="text-align: center;">Sponsors</h2>
1010
<p style="text-align: center;">Visionary sponsors help to host Python downloads.</p>
11-
<div style="display: grid; grid-gap: 2em; grid-template-columns: repeat(auto-fit, minmax(150px, 0fr)); align-items: center; justify-content: center; margin-top: 1.5em;">
11+
<div style="display: grid; grid-gap: 2em; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); align-items: center; justify-content: center; margin-top: 1.5em;">
1212
{% for sponsorship in sponsorships %}
1313
{% thumbnail sponsorship.sponsor.web_logo "x150" format="PNG" quality=100 as im %}
1414
<div style="text-align: center;">
@@ -26,7 +26,7 @@ <h2 class="widget-title" style="text-align: center;">Sponsors</h2>
2626
{% comment %}cache for 1 day{% endcomment %}
2727
{% cache 86400 CACHED_JOBS_SPONSORS_LIST %}
2828
<h3 class="widget-title">Job Board Sponsors</h3>
29-
<div style="display: grid; grid-gap: 1em; grid-template-columns: repeat(auto-fit, minmax(100px, 0fr)); grid-template-rows: repeat(1, minmax(50px, 0fr)); align-items: center; justify-content: center; margin-top: 1em;">
29+
<div style="display: grid; grid-gap: 1em; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); align-items: center; justify-content: center; margin-top: 1em;">
3030
{% for sponsorship in sponsorships %}
3131
{% thumbnail sponsorship.sponsor.web_logo "x100" format="PNG" quality=100 as im %}
3232
<div>

0 commit comments

Comments
 (0)