Skip to content

Commit 0dfe909

Browse files
authored
Added padding and fixed columns for sponsor logos in mobile view (#48805)
1 parent f1ed6de commit 0dfe909

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)