handzon-core 0.6.0 → 0.6.1

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/package.json +1 -1
  2. package/styles/base.css +10 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "handzon-core",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Core framework for Handzon — layouts, components, content + AI libs, and server runtime (handlers, DB, auth, migration runner) consumed by Handzon scaffolds.",
5
5
  "publishConfig": {
6
6
  "access": "public"
package/styles/base.css CHANGED
@@ -76,8 +76,18 @@ a:hover {
76
76
  padding-left: 1.5rem;
77
77
  margin: 0.75em 0;
78
78
  }
79
+ /* Tailwind's preflight zeroes `list-style` on ul/ol, so the bullets
80
+ * disappear by default. Put them back inside .prose only — UI lists
81
+ * (sidebar, filter pills, etc.) keep the unstyled default. */
82
+ .prose ul { list-style: disc outside; }
83
+ .prose ol { list-style: decimal outside; }
84
+ .prose ul ul { list-style-type: circle; }
85
+ .prose ul ul ul { list-style-type: square; }
86
+ .prose ol ol { list-style-type: lower-alpha; }
87
+ .prose ol ol ol { list-style-type: lower-roman; }
79
88
 
80
89
  .prose li { margin: 0.25em 0; }
90
+ .prose li::marker { color: var(--color-muted); }
81
91
 
82
92
  .prose code:not(pre code),
83
93
  .tut-tab-panel code:not(pre code) {