diff options
author | Munyoki Kilyungi | 2024-09-03 16:41:14 +0300 |
---|---|---|
committer | BonfaceKilz | 2024-09-05 16:41:17 +0300 |
commit | 11d54f83b5920834075508cad8ad73a707ccd41c (patch) | |
tree | a0d54941189578684034271237cc236173e00cd4 /gn2/wqflask | |
parent | 62098c586569218f4ee749b1188c03f7d9dda396 (diff) | |
download | genenetwork2-11d54f83b5920834075508cad8ad73a707ccd41c.tar.gz |
Limit the table width to some set maximum width.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'gn2/wqflask')
-rw-r--r-- | gn2/wqflask/templates/wiki/history.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gn2/wqflask/templates/wiki/history.html b/gn2/wqflask/templates/wiki/history.html index e10ff683..d0a3ead6 100644 --- a/gn2/wqflask/templates/wiki/history.html +++ b/gn2/wqflask/templates/wiki/history.html @@ -9,13 +9,15 @@ width: 18em; } + table tbody th, table tbody td { padding: 3px; } table { - margin-left: 0.5em; + margin-left: 1em; + max-width: 60em !important; } </style> {% endblock %} |