kaze-design-system 0.2.1 → 0.2.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.
Files changed (2) hide show
  1. package/components.css +19 -22
  2. package/package.json +1 -1
package/components.css CHANGED
@@ -2057,6 +2057,15 @@
2057
2057
  .prose ul,
2058
2058
  .prose ol {
2059
2059
  padding-left: var(--space-6);
2060
+ margin-bottom: var(--space-5);
2061
+ }
2062
+
2063
+ .prose ul {
2064
+ list-style-type: disc;
2065
+ }
2066
+
2067
+ .prose ol {
2068
+ list-style-type: decimal;
2060
2069
  }
2061
2070
 
2062
2071
  .prose li {
@@ -3440,27 +3449,18 @@
3440
3449
 
3441
3450
  .app-layout__main {
3442
3451
  flex: 1;
3443
- margin-left: 0;
3452
+ min-width: 0;
3444
3453
  display: flex;
3445
3454
  flex-direction: column;
3446
3455
  }
3447
3456
 
3448
3457
  .app-layout__content {
3449
3458
  flex: 1;
3450
- padding: var(--space-4);
3459
+ padding: var(--space-6);
3451
3460
  max-width: var(--content-max-width);
3452
3461
  width: 100%;
3453
3462
  }
3454
3463
 
3455
- @media (min-width: 768px) {
3456
- .app-layout__main {
3457
- margin-left: var(--sidebar-width);
3458
- }
3459
- .app-layout__content {
3460
- padding: var(--space-6);
3461
- }
3462
- }
3463
-
3464
3464
  /* ── TopBar ──────────────────────────────────────────────── */
3465
3465
 
3466
3466
  .top-bar {
@@ -3486,15 +3486,15 @@
3486
3486
 
3487
3487
  .sidebar {
3488
3488
  width: var(--sidebar-width);
3489
- position: fixed;
3489
+ position: sticky;
3490
3490
  top: 0;
3491
- left: 0;
3492
- bottom: 0;
3493
- background-color: var(--color-surface);
3491
+ height: 100dvh;
3492
+ flex-shrink: 0;
3493
+ overflow-y: auto;
3494
+ background-color: var(--color-bg);
3494
3495
  border-right: 1px solid var(--color-border);
3495
- display: none;
3496
+ display: flex;
3496
3497
  flex-direction: column;
3497
- z-index: var(--z-sticky);
3498
3498
  padding: var(--space-5) var(--space-3);
3499
3499
  }
3500
3500
 
@@ -3536,11 +3536,8 @@
3536
3536
  margin: var(--space-2) var(--space-4);
3537
3537
  }
3538
3538
 
3539
- @media (min-width: 768px) {
3540
- .sidebar {
3541
- display: flex;
3542
- }
3543
- }
3539
+ /* Sidebar is always visible (sticky in flex layout).
3540
+ Consumers can add their own @media rules to hide on mobile. */
3544
3541
 
3545
3542
  /* ── Logo ────────────────────────────────────────────────── */
3546
3543
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kaze-design-system",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "license": "MIT",