Simplify commit css

This commit is contained in:
Joscha 2023-08-06 21:29:44 +02:00
parent 84994ac347
commit 171505d7ec
2 changed files with 2 additions and 5 deletions

View file

@ -109,10 +109,6 @@ nav img {
font-weight: bold; font-weight: bold;
} }
.commit .message {
margin: 1em 0ch 1em 4ch;
}
.commit dl { .commit dl {
display: grid; display: grid;
grid: auto-flow / min-content 1fr; grid: auto-flow / min-content 1fr;
@ -130,6 +126,7 @@ nav img {
} }
.commit pre { .commit pre {
margin: 1em 0ch 1em 4ch;
white-space: pre-wrap; white-space: pre-wrap;
} }

View file

@ -53,6 +53,6 @@ This commit can be reached from a tracked ref.
</dd> </dd>
{% endfor %} {% endfor %}
</dl> </dl>
<pre class="message {% call r_class(reachable) %}" title="{% call r_title(reachable) %}">{{ message }}</pre> <pre class="{% call r_class(reachable) %}" title="{% call r_title(reachable) %}">{{ message }}</pre>
</div> </div>
{% endblock %} {% endblock %}