样式微调、加入背景色,加入Tidio在线聊天

This commit is contained in:
tangly1024
2021-10-29 17:50:41 +08:00
parent b0164e1e39
commit 634ea6c389
10 changed files with 29 additions and 16 deletions

View File

@@ -38,7 +38,7 @@ const BlogPost = ({ post, blockMap, tags, prev, next }) => {
<div id='article-wrapper' ref={targetRef} className='flex-grow bg-gray-100 dark:bg-gray-800'>
{/* 中央区域 wrapper */}
<header
className='hover:scale-105 hover:shadow-2xl duration-200 transform mx-auto max-w-5xl mt-16 lg:mt-20 md:flex-shrink-0 animate__fadeIn animate__animated'>
className='hover:shadow-2xl duration-200 mx-auto max-w-5xl mt-16 lg:mt-20 md:flex-shrink-0 animate__fadeIn animate__animated'>
{/* 封面图 */}
{post.page_cover && post.page_cover.length > 1 && (
<img className='bg-center object-cover w-full' style={{ maxHeight: '40rem' }}
@@ -153,7 +153,6 @@ const BlogPost = ({ post, blockMap, tags, prev, next }) => {
</section>
</aside>
{/* 右下角悬浮菜单 */}
</BaseLayout>
}