Fix table widths

This commit is contained in:
Oliver Davies 2018-06-15 12:17:45 +01:00
parent 6e102482c2
commit 7a3fab1471
3 changed files with 7 additions and 6 deletions

View file

@ -2,23 +2,23 @@
<table class="table">
<thead>
<tr>
<th class="w-1/4">Date</th>
<th class="w-40 md:w-48 block">Date</th>
{% if not talk_page %}
<th class="w-1/3">Talk</th>
<th>Talk</th>
{% endif %}
<th>Event</th>
{% if not upcoming %}
<th>Feedback</th>
<th class="w-32">Feedback</th>
{% endif %}
</tr>
</thead>
<tbody>
{% for talk in talks %}
<tr>
<td>
<td class="w-40 md:w-48 whitespace-no-wrap xl:whitespace-normal">
{{ talk.event.date|date(talk.event.fuzzy_date ? 'F Y' : 'j F Y') }}
{% if talk.event.time is defined %}
@ -29,7 +29,7 @@
</td>
{% if not talk_page %}
<td>
<td class="whitespace-no-wrap xl:whitespace-normal">
{% if talk.talk.url is not empty %}
<a href="{{ talk.talk.url }}" class="link">
{{ talk.talk.title }}