summaryrefslogtreecommitdiff
path: root/app/posts
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2024-11-23 11:38:33 -0600
committerluxagraf <sng@luxagraf.net>2024-11-23 11:38:33 -0600
commit5191f00304154f7cc060e28b28c5800a9030a160 (patch)
tree746223887283c0dea6680fe459fa3bc5e4c1b28b /app/posts
parentea4bb7eacd259a15b9e9d799c1d3a31506baaa1b (diff)
jrnl: fixed signup form padding
Diffstat (limited to 'app/posts')
-rw-r--r--app/posts/templates/posts/jrnl_list.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/posts/templates/posts/jrnl_list.html b/app/posts/templates/posts/jrnl_list.html
index 8e3c4df..93d64ad 100644
--- a/app/posts/templates/posts/jrnl_list.html
+++ b/app/posts/templates/posts/jrnl_list.html
@@ -47,8 +47,7 @@
<script>
function resizeIframe(obj) {
- console.log((obj.contentWindow.document.body.scrollHeight - 50) + 'px');
- obj.style.height = (obj.contentWindow.document.body.scrollHeight - 50) + 'px';
+ obj.style.height = (obj.contentWindow.document.body.scrollHeight - 75) + 'px';
}
</script>
{% endblock %}