@knowcode/doc-builder 1.3.2 → 1.3.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/CHANGELOG.md +7 -0
- package/assets/css/notion-style.css +2 -0
- package/assets/css/style.css +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ 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.3] - 2025-07-19
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Added spacing between breadcrumb and filter box in sidebar
|
|
12
|
+
- Added margin-bottom to sidebar-header for better visual separation
|
|
13
|
+
- Improved sidebar navigation layout with consistent spacing
|
|
14
|
+
|
|
8
15
|
## [1.3.2] - 2025-07-19
|
|
9
16
|
|
|
10
17
|
### Added
|
|
@@ -336,6 +336,7 @@ pre code {
|
|
|
336
336
|
.sidebar-header {
|
|
337
337
|
padding: var(--space-4);
|
|
338
338
|
border-bottom: 1px solid var(--color-border-default);
|
|
339
|
+
margin-bottom: var(--space-4);
|
|
339
340
|
}
|
|
340
341
|
|
|
341
342
|
.filter-box {
|
|
@@ -501,6 +502,7 @@ pre code {
|
|
|
501
502
|
.sidebar-header {
|
|
502
503
|
padding: var(--space-3);
|
|
503
504
|
border-bottom: 1px solid var(--color-border-default);
|
|
505
|
+
margin-bottom: var(--space-4);
|
|
504
506
|
}
|
|
505
507
|
|
|
506
508
|
.filter-box {
|
package/assets/css/style.css
CHANGED