Skip to content

Commit 6ec9dd9

Browse files
committed
顶栏微调
1 parent 26547d8 commit 6ec9dd9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

themes/simple/components/BlogItem.js

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import CONFIG_SIMPLE from '../config_simple'
44

55
export const BlogItem = props => {
66
const { post } = props
7-
console.log(post)
87

98
return <div key={post.id} className="mb-10 pb-12 border-b dark:border-gray-800" >
109
<h2 className="mb-5 ">

themes/simple/components/TopBar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import CONFIG_SIMPLE from '../config_simple'
77
export const TopBar = (props) => {
88
if (CONFIG_SIMPLE.TOP_BAR_CONTENT) {
99
return <header className="w-full flex justify-between items-center px-20 h-10 bg-black dark:bg-hexo-black-gray z-10">
10-
<div className='text-xs text-white' dangerouslySetInnerHTML={{ __html: CONFIG_SIMPLE.TOP_BAR_CONTENT }}/>
10+
<div className='text-xs text-white z-50' dangerouslySetInnerHTML={{ __html: CONFIG_SIMPLE.TOP_BAR_CONTENT }}/>
1111
</header>
1212
}
1313
return <></>

0 commit comments

Comments
 (0)