Skip to content

Commit 39e6f63

Browse files
committed
fix: CSS volunteer display on mobile
col-4 causes volunteer images to overlap on smaller screens we need col-lg-4 so it's only applied on larger screens
1 parent fa29249 commit 39e6f63

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

conduct/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ <h3>On-Site Community Support Volunteers</h3>
186186
<div class="row">
187187
{% assign onsite_volunteers = site.data.community-support | where:"onsite","true" | sort: 'last'%}
188188
{% for volunteer in onsite_volunteers %}
189-
<div class="col-4">
189+
<div class="col-lg-4">
190190
<div class="speaker-box text-center">
191191
<div class="speaker-box-inner">
192192
<div class="speaker-mini">
@@ -219,7 +219,7 @@ <h3>Online Community Support Volunteers</h3>
219219

220220
{% assign online_volunteers = site.data.community-support | where:"online","true" | sort: 'last'%}
221221
{% for volunteer in online_volunteers %}
222-
<div class="col-4">
222+
<div class="col-lg-4">
223223
<div class="speaker-box text-center">
224224
<div class="speaker-box-inner">
225225
<div class="speaker-mini">

0 commit comments

Comments
 (0)