Fix card title font-size

This commit is contained in:
vimux 2018-05-22 15:27:55 +03:00
parent b97db4bb99
commit b6a9f07c52
No known key found for this signature in database
GPG key ID: 5A34FDC4EE832E34
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
<article class="post card__box block"> <article class="post card__box block">
{{- partial "post_thumbnail.html" (dict "page" . ) }} {{- partial "post_thumbnail.html" (dict "page" . ) }}
<h1 class="post__title"><a class="post__title-link" href="{{ .RelPermalink }}">{{ .Title }}</a></h1> <h1 class="post__title title-excerpt"><a class="post__title-link" href="{{ .RelPermalink }}">{{ .Title }}</a></h1>
<div class="post__content">{{- .Summary }}</div> <div class="post__content">{{- .Summary }}</div>
<div class="post__meta meta mt tar">{{ partial "post_meta.html" . }}</div> <div class="post__meta meta mt tar">{{ partial "post_meta.html" . }}</div>
</article> </article>

View file

@ -629,7 +629,7 @@ mark {
} }
/* Post */ /* Post */
.post__title-link { .title-excerpt {
font-size: 1.25rem; font-size: 1.25rem;
} }