@kolkrabbi/kol-component 0.76.3 → 0.76.4
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-component",
|
|
3
|
-
"version": "0.76.
|
|
3
|
+
"version": "0.76.4",
|
|
4
4
|
"description": "KOL design-system components — atoms through organisms, emitting canonical kol-* classes. Pairs with @kolkrabbi/kol-theme for styling.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -65,14 +65,18 @@ export default function SectionCta({
|
|
|
65
65
|
]
|
|
66
66
|
return (
|
|
67
67
|
<section className={`w-full bg-auto ${className}`.trim()}>
|
|
68
|
-
|
|
68
|
+
{/* capped at 1600 and centred (SectionCtaEditorial, user 2026-08-26:
|
|
69
|
+
* "I would cap it at 1800 or 1600") — the surface stays full width,
|
|
70
|
+
* the columns stop hugging the viewport edges at 2000 */}
|
|
71
|
+
<div className="w-full max-w-[1600px] mx-auto py-10 flex flex-col md:flex-row items-start gap-12 overflow-hidden">
|
|
69
72
|
<div className="flex-1 self-stretch text-auto kol-sans-display-01">{eyebrow}</div>
|
|
70
73
|
<div className="flex-1 self-stretch pb-6 md:pt-32 flex flex-col justify-end items-start gap-12">
|
|
71
74
|
{rows.map((row, i) => (
|
|
72
75
|
<SectionText
|
|
73
76
|
key={i}
|
|
74
77
|
label={row.label}
|
|
75
|
-
|
|
78
|
+
/* the set's eyebrow voice (helper-12 · meta · uppercase by role),
|
|
79
|
+
* not the shipped helper-16 — one eyebrow across the set */
|
|
76
80
|
headline={row.href ? <a href={row.href} className="hover:opacity-70 transition-opacity">{row.value}</a> : row.value}
|
|
77
81
|
headlineAs="div"
|
|
78
82
|
headlineClass="text-auto kol-sans-heading-01"
|