@half-built/css 0.4.0 → 0.4.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/src/prose.css +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@half-built/css",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Design tokens, base, patterns, and prose CSS for the half-built design system.",
5
5
  "license": "MIT",
6
6
  "repository": {
package/src/prose.css CHANGED
@@ -9,6 +9,12 @@
9
9
  bare browser defaults, recorded as a deliberate deviation in the handoff. */
10
10
  .prose p { margin: 0 0 1.5em; }
11
11
  .prose h2 { font-size: var(--font-size-md); margin: 1.6em 0 0.6em; }
12
+ /* Footnotes (Markdown [^1]) get no rules of their own: the reference
13
+ is a superscript link and the notes an ordered list under an h2,
14
+ all on the rhythm above. remark-gfm classes that h2 "sr-only",
15
+ expecting the sheet to hide it; this system defines no .sr-only on
16
+ purpose, so the Footnotes heading shows (owner call 2026-09-09).
17
+ Do not add an .sr-only rule or alias it to .screen-reader-text. */
12
18
  .prose h3 { font-size: var(--font-size-base); margin: 1.4em 0 0.5em; }
13
19
  .prose h4 { font-size: var(--font-size-sm); text-transform: uppercase; letter-spacing: 0.5px; margin: 1.4em 0 0.5em; }
14
20