Fix heading size for article detail
This commit is contained in:
parent
ccab8864d3
commit
8ee3cd7582
2 changed files with 5 additions and 5 deletions
|
@ -36,7 +36,7 @@ a:hover, a:focus {
|
|||
color: var(--background);
|
||||
}
|
||||
|
||||
article.article-list h2 a {
|
||||
.article-list h2 a {
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
|
@ -57,11 +57,11 @@ article.article-list h2 a {
|
|||
flex-grow: 0;
|
||||
}
|
||||
|
||||
article.article-list + article.article-list {
|
||||
.article-list + .article-list {
|
||||
margin-top: 4em;
|
||||
}
|
||||
|
||||
article.article-list h2, article h1 {
|
||||
.article-list h2, .article-detail h1 {
|
||||
margin-bottom: .2em;
|
||||
}
|
||||
|
||||
|
|
|
@ -4,11 +4,11 @@
|
|||
{{ article.title }}
|
||||
{% endblock %}
|
||||
{% block content %}
|
||||
<article>
|
||||
<div class="article-detail">
|
||||
<h1>{{ article.title }}{% if article.status != article.PUBLISHED %} ({{ article.status }}){% endif %}</h1>
|
||||
{% include "articles/metadata_snippet.html" %}
|
||||
<div>
|
||||
{{ article.get_formatted_content|safe }}
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
Reference in a new issue