hexo 样式微调

This commit is contained in:
tangly1024
2022-03-08 14:52:21 +08:00
parent 3ea3fb9970
commit 64581d7147
6 changed files with 54 additions and 12 deletions

View File

@@ -14,7 +14,7 @@ const TocDrawerButton = (props) => {
return <></>
}
const { locale } = useGlobal()
return (<div onClick={props.onClick} className='py-2 px-3 cursor-pointer dark:text-gray-200 text-center transform hover:scale-150 duration-200 flex justify-center items-center' title={locale.POST.TOP} >
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'/>
</div>)
}