@knowcode/doc-builder 1.2.10 → 1.2.11
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/CHANGELOG.md +9 -0
- package/assets/css/style.css +1 -1
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ All notable changes to @knowcode/doc-builder will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.2.11] - 2025-07-19
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Reduced excessive top spacing in content area by adjusting padding from 1.5rem to 1rem
|
|
12
|
+
- Improved visual layout by reducing the gap between header and content
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Content area now uses asymmetric padding (1rem top, 2rem sides, 1.5rem bottom) for better visual balance
|
|
16
|
+
|
|
8
17
|
## [1.2.10] - 2025-07-19
|
|
9
18
|
|
|
10
19
|
### Fixed
|
package/assets/css/style.css
CHANGED
|
@@ -1087,7 +1087,7 @@ em, i {
|
|
|
1087
1087
|
.content {
|
|
1088
1088
|
flex: 1;
|
|
1089
1089
|
margin-left: var(--sidebar-width);
|
|
1090
|
-
padding: var(--space-
|
|
1090
|
+
padding: var(--space-lg) var(--space-2xl) var(--space-xl);
|
|
1091
1091
|
max-width: calc(var(--content-max-width) + var(--space-2xl) * 2);
|
|
1092
1092
|
transition: margin-left var(--transition-base);
|
|
1093
1093
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knowcode/doc-builder",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.11",
|
|
4
4
|
"description": "Reusable documentation builder for markdown-based sites with Vercel deployment support",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"doc-builder": "
|
|
8
|
-
"@knowcode/doc-builder": "./scripts/npx-runner.js"
|
|
7
|
+
"doc-builder": "scripts/npx-runner.js"
|
|
9
8
|
},
|
|
10
9
|
"scripts": {
|
|
11
10
|
"postinstall": "node scripts/setup.js || true",
|