Remove redundant text-base class from <h3> tags for styling consistency across components.

This commit is contained in:
MartinBraquet
2026-05-08 14:31:55 +02:00
parent ce10ddf366
commit 01467553d5
2 changed files with 4 additions and 4 deletions

View File

@@ -44,7 +44,7 @@ function FeatureCard({icon, title, text}: FeatureCardProps) {
<div className="w-11 h-11 rounded-xl bg-canvas-200 border border-canvas-300 flex items-center justify-center text-xl mb-5">
{icon}
</div>
<h3 className="text-base font-bold text-ink-1000 mb-2.5">{title}</h3>
<h3 className="font-bold text-ink-1000 mb-2.5">{title}</h3>
<p className="text-sm text-primary-700 leading-relaxed">{text}</p>
</div>
)

View File

@@ -44,7 +44,7 @@ function FeatureCard({icon, title, text}: FeatureCardProps) {
<div className="w-11 h-11 rounded-xl bg-canvas-200 border border-canvas-300 flex items-center justify-center text-xl mb-5 flex-shrink-0">
{icon}
</div>
<h3 className="text-base font-bold text-ink-900 mb-2.5">{title}</h3>
<h3 className="font-bold text-ink-900 mb-2.5">{title}</h3>
<p className="text-sm text-ink-500 leading-relaxed">{text}</p>
</div>
)
@@ -68,7 +68,7 @@ function FeatureCardWide({icon, title, text}: FeatureCardProps) {
{icon}
</div>
<div className={'min-w-0'}>
<h3 className="text-base font-bold text-ink-900 mb-2">{title}</h3>
<h3 className="font-bold text-ink-900 mb-2">{title}</h3>
<p className="text-sm text-ink-500 leading-relaxed">{text}</p>
</div>
</div>
@@ -95,7 +95,7 @@ function HelpCard({icon, title, text, buttonLabel, buttonUrl, buttonPrimary, id}
<div className="w-10 h-10 rounded-xl bg-canvas-200 border border-canvas-300 flex items-center justify-center text-lg mb-4 flex-shrink-0">
{icon}
</div>
<h3 id={id} className="text-base font-bold text-ink-900 mb-2">
<h3 id={id} className="font-bold text-ink-900 mb-2">
{title}
</h3>
<p className="text-sm text-ink-500 leading-relaxed flex-1 mb-5">{text}</p>