fix(theme): styles

renamed featured header image class on article pages so that they're (somewhat) more distinct from article preview images on list pages
pull/7/head
steven 2021-09-29 16:28:45 -04:00
parent bcf28169fa
commit 934d5f1a7b
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
</div>
{{if isset .Params "image" }}
<img src="{{ index .Params "image" }}" alt="{{ .Title }}" class="preview">
<img src="{{ index .Params "image" }}" alt="{{ .Title }}" class="heading">
{{ end }}
<article class="row content" style="margin-top: 2em">

View File

@ -55,6 +55,6 @@ article p img {
hyphens: auto;
}
img.preview {
img.preview, img.heading {
width: 100%;
}