修复首页导航栏样式问题
This commit is contained in:
@@ -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>
|
||||
)
|
||||
|
||||
@@ -88,7 +88,7 @@ function SolutionItem(props: {
|
||||
<Link
|
||||
href={props.href}
|
||||
className={[
|
||||
`flex flex-col gap-2 items-start rounded-md cursor-pointer`,
|
||||
`flex flex-col gap-2 items-start rounded-md cursor-pointer p-3`,
|
||||
`transition-colors duration-200 hover:bg-blue-50`,
|
||||
].join(' ')}
|
||||
onClick={onClick}
|
||||
|
||||
@@ -25,7 +25,7 @@ export async function proxy(request: NextRequest) {
|
||||
}
|
||||
}
|
||||
catch (e) {
|
||||
console.log('❌ 刷新访问令牌失败', e)
|
||||
console.log('刷新访问令牌失败', request.url, (e as Error).message)
|
||||
}
|
||||
|
||||
// 验证访问令牌
|
||||
|
||||
Reference in New Issue
Block a user