valaxy-theme-yun 0.28.2 → 0.28.3
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/YunPagination.vue +4 -2
- package/layouts/home.vue +2 -2
- package/package.json +3 -3
|
@@ -65,9 +65,11 @@ defineExpose({
|
|
|
65
65
|
|
|
66
66
|
.pagination {
|
|
67
67
|
display: flex;
|
|
68
|
-
justify-content: center;
|
|
69
68
|
align-items: center;
|
|
70
|
-
|
|
69
|
+
width: fit-content;
|
|
70
|
+
margin: 1.25rem auto 0;
|
|
71
|
+
border-radius: 1rem;
|
|
72
|
+
overflow: hidden;
|
|
71
73
|
|
|
72
74
|
.prev, .next, .page-number, .space {
|
|
73
75
|
display: inline-flex;
|
package/layouts/home.vue
CHANGED
|
@@ -19,7 +19,7 @@ const showNotice = computed(() => {
|
|
|
19
19
|
|
|
20
20
|
<template>
|
|
21
21
|
<YunLayoutWrapper :no-margin="!isPage">
|
|
22
|
-
<div class="w-full flex flex-col items-center">
|
|
22
|
+
<div class="w-full flex flex-col items-center pb-8">
|
|
23
23
|
<template v-if="themeConfig.banner?.enable">
|
|
24
24
|
<template v-if="!isPage">
|
|
25
25
|
<div class="w-full">
|
|
@@ -56,7 +56,7 @@ const showNotice = computed(() => {
|
|
|
56
56
|
|
|
57
57
|
<YunNotice
|
|
58
58
|
v-if="showNotice"
|
|
59
|
-
class="mb-
|
|
59
|
+
class="mb-4"
|
|
60
60
|
:class="{
|
|
61
61
|
'mt-4': !isPage,
|
|
62
62
|
}"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "valaxy-theme-yun",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.28.
|
|
4
|
+
"version": "0.28.3",
|
|
5
5
|
"author": {
|
|
6
6
|
"email": "me@yunyoujun.cn",
|
|
7
7
|
"name": "YunYouJun",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/animejs": "^3.1.13",
|
|
36
|
-
"valaxy": "0.
|
|
37
|
-
"valaxy
|
|
36
|
+
"valaxy-addon-waline": "0.2.1",
|
|
37
|
+
"valaxy": "0.28.3"
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
40
40
|
"release": "bumpp && pnpm publish"
|