🐛 Fix article summary style in dark mode

pull/26/head
James Panther 2021-10-29 14:54:46 +11:00
parent bda38cb8f9
commit 8949c62df2
No known key found for this signature in database
GPG Key ID: D36F789E45745D17
2 changed files with 2 additions and 1 deletions

View File

@ -21,6 +21,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Fixed ### Fixed
- Site logo image dimensions are unconstrained ([#19](https://github.com/jpanther/congo/issues/19)) - Site logo image dimensions are unconstrained ([#19](https://github.com/jpanther/congo/issues/19))
- Article summary styled incorrectly in dark mode
## [1.4.0] - 2021-10-20 ## [1.4.0] - 2021-10-20

View File

@ -34,7 +34,7 @@
{{ partial "article-meta.html" . }} {{ partial "article-meta.html" . }}
</div> </div>
{{ if .Params.showSummary | default (.Site.Params.list.showSummary | default false) }} {{ if .Params.showSummary | default (.Site.Params.list.showSummary | default false) }}
<div class="py-1 prose"> <div class="py-1 prose dark:prose-light">
{{ .Summary | emojify }} {{ .Summary | emojify }}
</div> </div>
{{ end }} {{ end }}