Fixed some bad rendering on pretty quote boxes

This commit is contained in:
Jeffrey Phillips Freeman 2023-10-21 19:15:22 -04:00
parent 332bb70cd5
commit a2f6896b7e
No known key found for this signature in database
GPG key ID: AD914585C9406B6A
3 changed files with 8 additions and 2 deletions

View file

@ -4,6 +4,7 @@
* When a post has an `image_header` parameter this image is set as an attachment
to ActivityPub posts
* Fixed some poor CSS rendering for quote-box.
## 2.1.0

View file

@ -2,5 +2,5 @@
<blockquote>
{{ .Inner }}
</blockquote>
<cite>{{ .Get "source" }}</cite>
{{ if .Get "source" }}<cite>{{ .Get "source" }}</cite>{{ end }}
</div>

View file

@ -603,6 +603,11 @@ p {
overflow: auto;
}
section {
margin-top: 3em;
margin-bottom: 3em;
}
@-webkit-keyframes nprogress-spinner{
0%{
-webkit-transform:rotate(0)
@ -2267,7 +2272,7 @@ div#ch-tooltip {
.quote-box > blockquote:after {
content: '”';
right: -5rem;
right: 0;
bottom: 1rem;
}