mirror of https://github.com/YunYouJun/valaxy
fix(theme-yun): post-card tags gap
This commit is contained in:
parent
0037a1516f
commit
d18e70d257
|
@ -2,6 +2,9 @@
|
|||
title: 中文 Post 测试
|
||||
tags:
|
||||
- 中文
|
||||
- 多标签测试
|
||||
- 测试
|
||||
- Test
|
||||
---
|
||||
|
||||
新的一年即将到来。
|
||||
|
|
|
@ -30,9 +30,9 @@ features:
|
|||
<div m="auto y-8" text="center" font="black">
|
||||
<h3 text="3xl">🧪</h3>
|
||||
|
||||
```bash
|
||||
pnpm create valaxy
|
||||
```
|
||||
<code class="inline-flex text-xl! mt-4 px-4!">
|
||||
<span>pnpm</span> create <span text="purple">valaxy</span>
|
||||
</code>
|
||||
|
||||
<span text="4xl">WORK IN PROGRESS</span>
|
||||
|
||||
|
|
|
@ -70,7 +70,7 @@ const { icon, styles } = usePostProperty(props.post.type)
|
|||
</div>
|
||||
|
||||
<div
|
||||
class="post-tags inline-flex" items="center"
|
||||
class="post-tags inline-flex" items="center" gap="1"
|
||||
flex="wrap 1" justify="end" m="1"
|
||||
>
|
||||
<template v-if="post.tags">
|
||||
|
|
|
@ -8,7 +8,7 @@ defineProps<{
|
|||
|
||||
<template>
|
||||
<router-link
|
||||
v-for="tag, i in tags" :key="i" :to="{ path: '/tags/', query: { tag } }" ml-1
|
||||
v-for="tag, i in tags" :key="i" :to="{ path: '/tags/', query: { tag } }"
|
||||
class="transition post-tag inline-flex-center text-xs border-$va-c-divider hover:(text-blue-500 border-blue-500)"
|
||||
px-2 h="7"
|
||||
rounded-full
|
||||
|
|
Loading…
Reference in New Issue