修复首页导航栏样式问题

This commit is contained in:
2025-12-04 15:53:59 +08:00
parent aa2ce853b8
commit db891c883f
3 changed files with 4 additions and 4 deletions

View File

@@ -10,8 +10,8 @@ export function FragmentTitle(props: {
img: StaticImageData
}) {
return (
<h3 className="font-bold flex items-center gap-3">
<Image src={props.img} alt="icon" aria-hidden className="size-8 lg:size-9"/>
<h3 className="font-bold flex items-center gap-3 mb-3">
<Image src={props.img} alt="icon" aria-hidden className="size-8 lg:size-8"/>
<span>{props.text}</span>
</h3>
)