diff options
| -rw-r--r-- | python/fatcat_web/templates/fileset_view.html | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/python/fatcat_web/templates/fileset_view.html b/python/fatcat_web/templates/fileset_view.html index 939925f6..6f3f802e 100644 --- a/python/fatcat_web/templates/fileset_view.html +++ b/python/fatcat_web/templates/fileset_view.html @@ -49,7 +49,8 @@ No known public URL, mirror, or archive for this File Set.  <h3>File Manifest ({{ fileset.manifest|count }})</h3>  {% if fileset.manifest %} -<table class="ui compact table" style="z-index: 10;"> +<div style="overflow-x: auto;"> +<table class="ui compact single line table">    <thead>      <tr>        <th class="collapsing"></th> @@ -92,6 +93,7 @@ No known public URL, mirror, or archive for this File Set.      {% endfor %}    </tbody>  </table> +</div>  {% else %}  <p>This File Set is empty (contains no files).  {% endif %} | 
