深色模式调整配色

This commit is contained in:
tangly1024
2022-04-02 10:15:37 +08:00
parent 56be56d002
commit 475e5f6f60
14 changed files with 21 additions and 22 deletions

View File

@@ -11,7 +11,7 @@ const BlogPostCard = ({ post, showSummary }) => {
const showPreview = CONFIG_MEDIUM.POST_LIST_PREVIEW && post.blockMap
const { locale } = useGlobal()
return (
<div key={post.id} className='animate__animated animate__fadeIn duration-300 mb-6 max-w-7xl '>
<div key={post.id} className='animate__animated animate__fadeIn duration-300 mb-6 max-w-7xl border-b dark:border-gray-800 '>
<div className='lg:p-8 p-4 flex flex-col w-full'>
<Link href={`${BLOG.PATH}/article/${post.slug}`} passHref>
@@ -57,7 +57,6 @@ const BlogPostCard = ({ post, showSummary }) => {
</div>
</div> }
</div>
<hr className='w-full'/>
</div>
)