This commit is contained in:
Mackie 2026-06-01 17:58:45 +08:00
parent 17fe4c9bf2
commit 29da751aa8

View file

@ -17,7 +17,7 @@ type LowImpactHeroType =
export const LowImpactHero: React.FC<LowImpactHeroType> = ({ children, richText }) => {
return (
<div className="container mt-16">
<div className="max-w-[48rem]">
<div className="max-w-[48rem] [&_h3]:opacity-60">
{children || (richText && <RichText data={richText} enableGutter={false} />)}
</div>
</div>