Skip to content

Commit d4ed9d5

Browse files
committed
add padding to the speakers ul in conference page
1 parent 9e90858 commit d4ed9d5

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

_includes/conferences.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ <h2>
1010
{% endif %}
1111
{% if conference.speaking != "_No response_" %}
1212
<h3>Speaking:</h3>
13-
{{ conference.speaking | markdownify }}
13+
<!-- add padding to the ul items-->
14+
<ul class="speaking-list">
15+
{{ conference.speaking | markdownify }}
16+
</ul>
1417
{% endif %}
1518
</div>
1619
{% endfor %}

assets/css/bpd.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -459,3 +459,7 @@ img.donation-photo {
459459
img.featured-image {
460460
max-height: 20rem;
461461
}
462+
463+
ul.speaking-list {
464+
padding-left: 2rem;
465+
}

0 commit comments

Comments
 (0)