vuepress-theme-uniapp-official 1.6.12 → 1.6.13
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/package.json +12 -11
- package/styles/navbar.styl +2 -3
- package/styles/palette.styl +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vuepress-theme-uniapp-official",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.13",
|
|
4
4
|
"description": "uni-app official website theme for vuepress",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -27,6 +27,12 @@
|
|
|
27
27
|
"enhanceApp.js",
|
|
28
28
|
"index.js"
|
|
29
29
|
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"publish:patch": "npm version patch && npm publish",
|
|
32
|
+
"publish:minor": "npm version minor && npm publish",
|
|
33
|
+
"publish:major": "npm version major && npm publish",
|
|
34
|
+
"postpublish": "cnpm sync vuepress-theme-uniapp-official && node ../../scripts/postPublishTheme.js"
|
|
35
|
+
},
|
|
30
36
|
"publishConfig": {
|
|
31
37
|
"access": "public"
|
|
32
38
|
},
|
|
@@ -41,13 +47,13 @@
|
|
|
41
47
|
"markdown-it-task-lists": "^2.1.1",
|
|
42
48
|
"marked": "^3.0.8",
|
|
43
49
|
"qr-code-with-logo": "^1.1.0",
|
|
50
|
+
"vuepress-plugin-check-md2": "workspace:^",
|
|
51
|
+
"vuepress-plugin-expandable-row": "workspace:^",
|
|
44
52
|
"vuepress-plugin-juejin-style-copy": "^1.0.4",
|
|
45
53
|
"vuepress-plugin-mermaidjs": "1.9.1",
|
|
46
54
|
"vuepress-plugin-named-chunks": "^1.1.4",
|
|
47
|
-
"vuepress-plugin-
|
|
48
|
-
"vuepress-plugin-
|
|
49
|
-
"vuepress-plugin-noscript-code": "^1.0.2",
|
|
50
|
-
"vuepress-plugin-expandable-row": "^1.0.10"
|
|
55
|
+
"vuepress-plugin-noscript-code": "workspace:^",
|
|
56
|
+
"vuepress-plugin-zooming": "^1.1.8"
|
|
51
57
|
},
|
|
52
58
|
"resolutions": {
|
|
53
59
|
"terser-webpack-plugin": "1.4.6",
|
|
@@ -56,10 +62,5 @@
|
|
|
56
62
|
},
|
|
57
63
|
"devDependencies": {
|
|
58
64
|
"vue": "2.7.16"
|
|
59
|
-
},
|
|
60
|
-
"scripts": {
|
|
61
|
-
"publish:patch": "npm version patch && npm publish",
|
|
62
|
-
"publish:minor": "npm version minor && npm publish",
|
|
63
|
-
"publish:major": "npm version major && npm publish"
|
|
64
65
|
}
|
|
65
|
-
}
|
|
66
|
+
}
|
package/styles/navbar.styl
CHANGED
|
@@ -35,18 +35,17 @@ $navbar-logo-height = $navbar-main-navbar-height - 2rem
|
|
|
35
35
|
justify-content center
|
|
36
36
|
align-items center
|
|
37
37
|
.main-navbar-links
|
|
38
|
-
width 55%
|
|
38
|
+
// width 55%
|
|
39
39
|
display inline-block
|
|
40
40
|
@media (min-width: 1080px) and (max-width: 1680px)
|
|
41
41
|
&
|
|
42
42
|
flex 1
|
|
43
|
-
padding 0 300px
|
|
44
43
|
show-after()
|
|
45
44
|
opacity 1
|
|
46
45
|
transform scaleX(1)
|
|
47
46
|
.main-navbar-item
|
|
48
47
|
display inline-block
|
|
49
|
-
padding 0
|
|
48
|
+
padding 0 15px
|
|
50
49
|
position relative
|
|
51
50
|
&.active a
|
|
52
51
|
color $accentColor
|
package/styles/palette.styl
CHANGED