fix: use unicode dot for tags separation

This makes the separator appear correctly on all platforms (in theory)
This commit is contained in:
Price Hiller 2024-01-25 21:51:50 -06:00
parent c79f495f98
commit 95bbb1be16
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8
2 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ article > p {
} }
.article-tags > ul > li:not(:last-child)::after { .article-tags > ul > li:not(:last-child)::after {
content: " "; content: " ";
} }
.article-dates { .article-dates {
@ -129,5 +129,5 @@ article > p {
} }
.article-frontmatter-tags > ul > li:not(:last-child)::after { .article-frontmatter-tags > ul > li:not(:last-child)::after {
content: " "; content: " ";
} }

View File

@ -15,5 +15,5 @@
} }
.tags > ul > li:not(:last-child)::after { .tags > ul > li:not(:last-child)::after {
content: " "; content: " ";
} }