Skip to content

Commit e656091

Browse files
Backport PR #48805 on branch 1.5.x (Added padding and fixed columns for sponsor logos in mobile view) (#48874)
Backport PR #48805: Added padding and fixed columns for sponsor logos in mobile view Co-authored-by: Amay Patel <92037532+amay-patel@users.noreply.github.com>
1 parent dfe0e55 commit e656091

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web/pandas/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ <h5>Community</h5>
4444
<section>
4545
<h5>With the support of:</h5>
4646
{% for row in sponsors.active | batch(6, "") %}
47-
<div class="row h-100">
47+
<div class="row mx-auto h-100">
4848
{% for company in row %}
49-
<div class="col-sm-6 col-md-2 my-auto">
49+
<div class="col-6 col-md-2">
5050
{% if company %}
5151
<a href="{{ company.url }}" target="_blank">
52-
<img class="img-fluid" alt="{{ company.name }}" src="{{ base_url }}{{ company.logo }}"/>
52+
<img class="img-fluid img-thumnail py-5 mx-auto" alt="{{ company.name }}" src="{{ base_url }}{{ company.logo }}"/>
5353
</a>
5454
{% endif %}
5555
</div>

0 commit comments

Comments
 (0)