fix(pitch-deck): glossary — align abbreviations with descriptions (items-baseline)
All checks were successful
Build pitch-deck / build-push-deploy (push) Successful in 1m11s
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 35s
CI / test-python-voice (push) Successful in 34s
CI / test-bqas (push) Successful in 32s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-04-15 23:38:00 +02:00
parent 9e3f15ce4e
commit 936b4ccc51

View File

@@ -101,11 +101,11 @@ export default function GlossarySlide({ lang }: GlossarySlideProps) {
<h3 className={`text-xs font-bold ${cat.color} uppercase tracking-wider mb-3`}>{cat.title}</h3>
<div className="space-y-2">
{cat.terms.map((term, i) => (
<div key={i} className="flex gap-2">
<div key={i} className="flex gap-2 items-baseline">
<span className={`text-xs font-bold ${cat.color} min-w-[65px] shrink-0`}>{term.abbr}</span>
<div>
<span className="text-xs text-white/70">{term.full}</span>
<span className="text-[10px] text-white/40 ml-1"> {term.desc}</span>
<span className="text-xs text-white/40 ml-1"> {term.desc}</span>
</div>
</div>
))}