From 139c26158bba4ec09e7ba690ba6c9c11da620707 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Wed, 21 Jun 2023 23:52:28 +0100 Subject: fix permalink styling --- static/style.css | 2 +- templates/blogpost-panel.html.tera | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/static/style.css b/static/style.css index 3542e62..889c6ff 100644 --- a/static/style.css +++ b/static/style.css @@ -358,7 +358,7 @@ iframe { .blogpost .created-at a, .blogpost-content a { padding: 0; - margin: 0 0.5em; + margin: 0; background-color: transparent; color: #b52f6a; text-decoration: underline; diff --git a/templates/blogpost-panel.html.tera b/templates/blogpost-panel.html.tera index b722035..061d87b 100644 --- a/templates/blogpost-panel.html.tera +++ b/templates/blogpost-panel.html.tera @@ -1,6 +1,6 @@

{{ blogpost.subject }}

-

{{ blogpost.created_at }}permalink

+

{{ blogpost.created_at }} permalink

{% for tag in blogpost.tags %}{{ tag }}{% endfor %}
{{ blogpost.render }} -- cgit