@knowcode/doc-builder 1.3.12 → 1.3.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/CHANGELOG.md +12 -0
- package/assets/css/notion-style.css +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ 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.3.13] - 2025-07-19
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Made content body left-aligned instead of centered
|
|
12
|
+
- Made navigation menu top-aligned by removing top padding
|
|
13
|
+
- Simplified layout for better compatibility
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- `.content-inner` now uses `margin: 0` instead of `margin: 0 auto` for left alignment
|
|
17
|
+
- `.navigation` padding changed from all sides to only bottom/left/right
|
|
18
|
+
- Removed unnecessary centering that was causing layout issues
|
|
19
|
+
|
|
8
20
|
## [1.3.12] - 2025-07-19
|
|
9
21
|
|
|
10
22
|
### Fixed
|
|
@@ -535,7 +535,7 @@ pre code {
|
|
|
535
535
|
/* Navigation */
|
|
536
536
|
.navigation {
|
|
537
537
|
flex: 1;
|
|
538
|
-
padding: var(--space-2);
|
|
538
|
+
padding: 0 var(--space-2) var(--space-2) var(--space-2); /* No top padding */
|
|
539
539
|
overflow-y: auto;
|
|
540
540
|
overflow-x: visible;
|
|
541
541
|
|
|
@@ -703,7 +703,7 @@ pre code {
|
|
|
703
703
|
|
|
704
704
|
.content-inner {
|
|
705
705
|
max-width: 65rem;
|
|
706
|
-
margin: 0
|
|
706
|
+
margin: 0; /* Left aligned instead of centered */
|
|
707
707
|
}
|
|
708
708
|
|
|
709
709
|
/* Tables */
|