diff options
author | zsloan | 2021-12-02 17:39:09 +0000 |
---|---|---|
committer | zsloan | 2021-12-02 11:42:23 -0600 |
commit | 878afa280d5c2da36485fc73142961817d3c2d2f (patch) | |
tree | 24443dc66693cdc868dbd507b7eed87e16c2f3e7 | |
parent | 4bd10c0c4c2eddeb0e75de4da8fcbec222347fdc (diff) | |
download | genenetwork2-878afa280d5c2da36485fc73142961817d3c2d2f.tar.gz |
Increased mid-width for container element for mapping figure to prevent it from shrinking when the browser window is smaller (which prevents the links, etc, from overlapping properly with the image)
-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 f2d11e89..c1ea1daf 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: 900px;"> + <div class="container" style="min-width: 1650px;"> <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 %} |