diff --git a/src/routes/a/[slug].svelte b/src/routes/a/[slug].svelte index 17341e7..8e46cd3 100644 --- a/src/routes/a/[slug].svelte +++ b/src/routes/a/[slug].svelte @@ -88,10 +88,16 @@ } div.article-meta { - margin: 0 0 4rem 0; + margin: 0 0 2rem 0; padding: 0; } + div.article-meta blockquote { + border-left: 2px solid gray; + padding-left: 0.5rem; + margin: 0; + } + div.article-meta h1 { margin-bottom: 0; } @@ -114,6 +120,10 @@ p.comment-meta { margin: 0; } + + div.article-content { + margin-bottom: 2rem; + } @@ -126,11 +136,15 @@

{article.title}

-

Author: {article.author.realname}

-

Published: {new Date(article.created_at).toLocaleString()}

-

Views: {article.views}

+
+

Author: {article.author.realname}

+

Published: {new Date(article.created_at).toLocaleString()}

+

Views: {article.views}

+
+
+
+ {@html article.html}
- {@html article.html}

Comments