最新文章排序;
输入框底边样式;
目录背景色高度;
夜间模式按钮颜色;
移动端隐藏悬浮Darkmode按钮;
This commit is contained in:
tangly
2021-11-06 11:37:20 +08:00
parent 106dc9820d
commit 46495f9fe6
7 changed files with 24 additions and 22 deletions

View File

@@ -50,7 +50,7 @@ const Toc = ({ toc }) => {
setActiveSection(currentSectionId)
}, throttleMs))
return <>
return <div className='dark:bg-gray-600 min-h-screen'>
<div
className=' dark:border-gray-600 border-b text-2xl bg-white font-bold text-black dark:bg-gray-900 dark:text-white py-6 px-6'>
文章目录
@@ -82,7 +82,7 @@ const Toc = ({ toc }) => {
)
})}
</nav>
</>
</div>
}
export default Toc