We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd8a204 commit 1219351Copy full SHA for 1219351
src/components/PostTags.vue
@@ -17,8 +17,8 @@ export default {
17
margin: 1em 0 0;
18
19
&__link {
20
- margin-right: .75em;
21
- font-size: .75rem;
+ margin-right: 1em;
+ font-size: .8em;
22
color: currentColor;
23
text-decoration: none;
24
background-color: var(--bg-color);
src/templates/Tag.vue
@@ -1,6 +1,8 @@
1
<template>
2
<Layout>
3
- <h1 class="tag-title text-center space-bottom">Tag: {{ $page.tag.title }}</h1>
+ <h1 class="tag-title text-center space-bottom">
4
+ # {{ $page.tag.title }}
5
+ </h1>
6
7
<div class="posts">
8
<PostCard v-for="edge in $page.tag.belongsTo.edges" :key="edge.node.id" :post="edge.node"/>
0 commit comments