Skip to content
Snippets Groups Projects
Commit 1ec29973 authored by Tanner Prestegard's avatar Tanner Prestegard Committed by GraceDB
Browse files

Allow superevent detail tables to overflow for better mobile experience

parent b0d91040
No related branches found
No related tags found
No related merge requests found
......@@ -145,11 +145,13 @@
<div class="content-area">
{% block superevent_info %}
<h2>Superevent Info</h2>
<div style="overflow-x: auto;">
{% if user.is_authenticated %}
{% include "superevents/superevent_info_table.html" %}
{% else %}
{% include "superevents/superevent_info_table_public.html" %}
{% endif %}
</div>
{% endblock %}
<br />
......@@ -157,11 +159,13 @@
{% block basic_info %}
<h2>Preferred Event Info</h2>
<div style="overflow-x: auto;">
{% if user.is_authenticated %}
{% include "superevents/preferred_event_info_table.html" %}
{% else %}
{% include "superevents/preferred_event_info_table_public.html" %}
{% endif %}
</div>
{% endblock %}
{% if user.is_authenticated %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment