valaxy-theme-yun 0.12.3 → 0.12.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/YunFooter.vue +2 -2
- package/components/YunPostCard.vue +1 -1
- package/node/config.ts +1 -0
- package/package.json +2 -2
- package/types/index.d.ts +1 -0
package/components/YunFooter.vue
CHANGED
@@ -30,7 +30,7 @@ const footerIcon = computed(() => themeConfig.value.footer.icon || {
|
|
30
30
|
</a>
|
31
31
|
</div>
|
32
32
|
|
33
|
-
<div class="copyright flex justify-center items-center" p="1">
|
33
|
+
<div class="copyright flex justify-center items-center gap-2" p="1">
|
34
34
|
<span>
|
35
35
|
©
|
36
36
|
<template v-if="!isThisYear">
|
@@ -39,7 +39,7 @@ const footerIcon = computed(() => themeConfig.value.footer.icon || {
|
|
39
39
|
{{ year }}
|
40
40
|
</span>
|
41
41
|
|
42
|
-
<a v-if="themeConfig.footer.icon"
|
42
|
+
<a v-if="themeConfig.footer.icon?.enable" class="inline-flex animate-pulse" :href="footerIcon.url" target="_blank" :title="footerIcon.title">
|
43
43
|
<div :class="footerIcon.name" />
|
44
44
|
</a>
|
45
45
|
<span>{{ config.author.name }}</span>
|
@@ -31,7 +31,7 @@ const { icon, styles } = usePostProperty(props.post.type)
|
|
31
31
|
:to="post.path || ''"
|
32
32
|
m="t-3"
|
33
33
|
>
|
34
|
-
<div class="flex justify-center items-center title text-2xl" font="serif black">
|
34
|
+
<div class="flex justify-center items-center title text-2xl" text="center" font="serif black">
|
35
35
|
<div v-if="post.type" class="inline-flex" m="r-1" :class="icon" />{{ post.title }}
|
36
36
|
</div>
|
37
37
|
</AppLink>
|
package/node/config.ts
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "valaxy-theme-yun",
|
3
|
-
"version": "0.12.
|
3
|
+
"version": "0.12.4",
|
4
4
|
"author": {
|
5
5
|
"email": "me@yunyoujun.cn",
|
6
6
|
"name": "YunYouJun",
|
@@ -22,6 +22,6 @@
|
|
22
22
|
"valaxy-addon-waline": "0.0.7"
|
23
23
|
},
|
24
24
|
"devDependencies": {
|
25
|
-
"valaxy": "0.12.
|
25
|
+
"valaxy": "0.12.4"
|
26
26
|
}
|
27
27
|
}
|