Skip to content
This repository was archived by the owner on Apr 29, 2022. It is now read-only.

Commit 811f652

Browse files
authored
Fix schedule layout so that entries without level don't show grey bars. (#1285)
Give grid box a little more room.
1 parent 863f698 commit 811f652

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

templates/conference/schedule/schedule.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
.schedule__grid {
7575
--cols: 1;
7676
--rows: 1;
77-
--height: 15px;
77+
--height: 25px;
7878
--min-width: calc(100vw - 60px);
7979
display: grid;
8080
grid-template-columns: repeat(var(--cols), minmax(var(--min-width), 1fr));
@@ -300,11 +300,11 @@
300300
{% endif %}
301301
{% endcomment %}
302302

303+
{% if talk.level %}
303304
<div class="schedule__day__level_indicator">
304-
{% if talk.level %}
305-
{{ talk.level }}
306-
{% endif %}
305+
{{ talk.level }}
307306
</div>
307+
{% endif %}
308308

309309
</div>
310310
</div>

0 commit comments

Comments
 (0)