hexo 主题微调

This commit is contained in:
tangly1024
2022-03-08 15:25:07 +08:00
parent e2502981ce
commit 7e8703517a
10 changed files with 18 additions and 17 deletions

View File

@@ -14,8 +14,8 @@ const TocDrawerButton = (props) => {
return <></>
}
const { locale } = useGlobal()
return (<div onClick={props.onClick} className='py-2 px-3 cursor-pointer text-white transform duration-200 flex justify-center items-center bg-blue-400 w-7 h-7 text-center' title={locale.POST.TOP} >
<i className='fas fa-list-ol'/>
return (<div onClick={props.onClick} className='py-2 px-3 cursor-pointer text-white transform duration-200 flex justify-center items-center bg-gray-400 w-7 h-7 text-center' title={locale.POST.TOP} >
<i className='fas fa-list-ol text-xs'/>
</div>)
}