diff options
author | zsloan | 2021-12-14 22:21:49 +0000 |
---|---|---|
committer | zsloan | 2021-12-14 16:23:01 -0600 |
commit | 7c6618d20aaf97bec7abcc52ca144997dde59b64 (patch) | |
tree | 6966ab1bd91c53b87cd36273d04f8b7d928905a7 | |
parent | 92e555531e53630ce11e34a0b67bb111647b47c1 (diff) | |
download | genenetwork2-7c6618d20aaf97bec7abcc52ca144997dde59b64.tar.gz |
Removed min-width from container div, since it seems to have preventd horizontal scrolling when the window is small
-rw-r--r-- | wqflask/wqflask/templates/mapping_results.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/mapping_results.html b/wqflask/wqflask/templates/mapping_results.html index f62d554d..84db288c 100644 --- a/wqflask/wqflask/templates/mapping_results.html +++ b/wqflask/wqflask/templates/mapping_results.html @@ -12,7 +12,7 @@ {% endblock %} {% from "base_macro.html" import header %} {% block content %} - <div class="container" style="min-width: 1650px;"> + <div class="container"> <form method="post" target="_blank" action="/run_mapping" name="marker_regression" id="marker_regression_form"> <input type="hidden" name="temp_uuid" value="{{ temp_uuid }}"> {% if temp_trait is defined %} |