fix(posts): remove blank space on posts

Closes WEB-15
This commit is contained in:
taskylizard
2024-02-04 13:27:49 +00:00
parent 2d16b158cb
commit f10abe9816
15 changed files with 62 additions and 24 deletions

View File

@@ -18,12 +18,7 @@ const { frontmatter } = useData()
</script>
<template>
<h3>
{{ frontmatter.title }}
</h3>
<span>
{{ frontmatter.description }} {{ formatDate(frontmatter.date) }}
</span>
<h1>{{ frontmatter.title }}</h1>
<div>{{ frontmatter.description }} {{ formatDate(frontmatter.date) }}</div>
<Authors :authors="props.authors" />
</template>