valaxy-theme-yun 0.14.37 → 0.14.39

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.
@@ -16,10 +16,57 @@ const YunTwikoo = runtimeConfig.value.addons['valaxy-addon-twikoo']
16
16
  </script>
17
17
 
18
18
  <template>
19
- <YunCard w="full" p="4" class="comment markdown-body sm:p-6 lg:px-12 xl:px-16">
19
+ <YunCard w="full" p="4" class="comment sm:p-6 lg:px-12 xl:px-16">
20
20
  <ClientOnly>
21
21
  <YunWaline />
22
22
  <YunTwikoo />
23
23
  </ClientOnly>
24
24
  </YunCard>
25
25
  </template>
26
+
27
+ <style lang="scss">
28
+ .comment {
29
+ h1 {
30
+ font-size: 2rem;
31
+ font-weight: 600;
32
+ margin-bottom: 1rem;
33
+ }
34
+ h2 {
35
+ font-size: 1.75rem;
36
+ font-weight: 600;
37
+ margin-bottom: 1rem;
38
+ }
39
+ h3 {
40
+ font-size: 1.5rem;
41
+ font-weight: 600;
42
+ margin-bottom: 1rem;
43
+ }
44
+ h4 {
45
+ font-size: 1.2rem;
46
+ font-weight: 600;
47
+ margin-bottom: 1rem;
48
+ }
49
+ h5 {
50
+ font-size: 1rem;
51
+ font-weight: 600;
52
+ margin-bottom: 1rem;
53
+ }
54
+ h6 {
55
+ font-size: 0.875rem;
56
+ font-weight: 600;
57
+ margin-bottom: 1rem;
58
+ }
59
+
60
+ ul {
61
+ list-style: disc;
62
+ margin-left: 1rem;
63
+ margin-bottom: 1rem;
64
+ }
65
+
66
+ ol {
67
+ list-style: decimal;
68
+ margin-left: 1rem;
69
+ margin-bottom: 1rem;
70
+ }
71
+ }
72
+ </style>
@@ -11,7 +11,7 @@ const router = useRouter()
11
11
  <div class="site-info" m="t-6">
12
12
  <router-link class="site-author-avatar" to="/about">
13
13
  <img class="rounded-full" :src="siteConfig.author.avatar" alt="avatar">
14
- <span class="site-author-status">{{ siteConfig.author.status.emoji }}</span>
14
+ <span class="site-author-status" :title="siteConfig.author.status.message">{{ siteConfig.author.status.emoji }}</span>
15
15
  </router-link>
16
16
  <div
17
17
  class="site-author-name leading-6"
@@ -220,7 +220,7 @@ export function createFireworks(config: Partial<FireworksConfig>) {
220
220
  }
221
221
 
222
222
  const render = anime({
223
- duration: Infinity,
223
+ duration: Number.POSITIVE_INFINITY,
224
224
  update: () => {
225
225
  ctx.clearRect(0, 0, canvasEl.width, canvasEl.height)
226
226
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valaxy-theme-yun",
3
- "version": "0.14.37",
3
+ "version": "0.14.39",
4
4
  "author": {
5
5
  "email": "me@yunyoujun.cn",
6
6
  "name": "YunYouJun",
@@ -17,13 +17,13 @@
17
17
  "main": "node/index.ts",
18
18
  "types": "types/index.d.ts",
19
19
  "dependencies": {
20
- "@iconify-json/ant-design": "^1.1.5",
21
- "@iconify-json/simple-icons": "^1.1.59",
20
+ "@iconify-json/ant-design": "^1.1.6",
21
+ "@iconify-json/simple-icons": "^1.1.60",
22
22
  "animejs": "^3.2.1",
23
23
  "valaxy-addon-waline": "0.1.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/animejs": "^3.1.7",
27
- "valaxy": "0.14.37"
27
+ "valaxy": "0.14.39"
28
28
  }
29
29
  }