From 6e29e2578d4bc5c2eef3adc771771b7f3f66eba8 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 24 Dec 2023 01:00:44 +0100 Subject: [PATCH] Same line height on paste submission & view The line-height on the paste submission form & the paste display page is currently effectively different (due to ::before padding-bottom). This commit makes the line height uniform on both pages (leaning towards a higher value for better readability). --- templates/base.html | 2 +- templates/paste.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/base.html b/templates/base.html index 324c58c..ca4c273 100644 --- a/templates/base.html +++ b/templates/base.html @@ -13,7 +13,7 @@ padding: 2rem; background: #263238; color: #B0BEC5; - line-height: 1.1; + line-height: 1.4; display: flex; } body, code, textarea { font-family: monospace; } diff --git a/templates/paste.html b/templates/paste.html index e7d9815..ccdc93d 100644 --- a/templates/paste.html +++ b/templates/paste.html @@ -18,7 +18,7 @@ content: counter(line); display: inline-block; width: 2em; /* Fixed width */ - padding: 0 1em 0.3em 0; + padding: 0 1em 0 0; margin-right: .5em; color: #888; -webkit-user-select: none; @@ -29,4 +29,4 @@ {% endblock head %} -{% block content %}
{{ content|safe }}
{% endblock content %} \ No newline at end of file +{% block content %}
{{ content|safe }}
{% endblock content %}