💅 样式颜色统一,布局优化

This commit is contained in:
tangly1024
2021-09-28 17:36:45 +08:00
parent 9871d136bd
commit 4354f3650b
15 changed files with 174 additions and 133 deletions

View File

@@ -3,11 +3,9 @@ import TopJumper from '@/components/TopJumper'
import ShareButton from '@/components/ShareButton'
const RightWidget = ({ post }) => {
return <div className='fixed right-0 lg:mr-72 bottom-10 flex justify-center'>
<div className='flex-wrap'>
<ShareButton post={post}/>
<TopJumper/>
</div>
return <div className='flex-wrap'>
<ShareButton post={post} />
<TopJumper />
</div>
}
export default RightWidget