diff --git a/components/Tabs.js b/components/Tabs.js
index 439dcaee..6f08aada 100644
--- a/components/Tabs.js
+++ b/components/Tabs.js
@@ -39,7 +39,7 @@ const Tabs = ({ className, children }) => {
{children.map((item, index) => {
return - {
tabClickHandle(index)
}}>
diff --git a/styles/notion.css b/styles/notion.css
index 50ce45f3..cd461c33 100644
--- a/styles/notion.css
+++ b/styles/notion.css
@@ -1130,9 +1130,10 @@ code[class*='language-'] {
transition: background 20ms ease-in 0s;
cursor: pointer;
width: 100%;
+ opacity: 0.9;
padding: 6px 2px;
- font-size: 14px;
+ font-size: 15px;
line-height: 1.2;
display: flex;
align-items: center;
diff --git a/themes/simple/components/ArticleInfo.js b/themes/simple/components/ArticleInfo.js
index fc3de00b..f4f1b63a 100644
--- a/themes/simple/components/ArticleInfo.js
+++ b/themes/simple/components/ArticleInfo.js
@@ -11,21 +11,21 @@ export const ArticleInfo = (props) => {
return (
-
- {post?.title}
-
+
+ {post?.title}
+
- {post?.type !== 'Page' && (<>
-
+
+ {post?.type !== 'Page' && (
+
- >)}
+
)}
- {post?.type !== 'Page' && (<>
+ {post?.type !== 'Page' && (
{locale.COMMON.POST_TIME}:
{
- >)}
+
)}
+
)
}
diff --git a/themes/simple/components/Catalog.js b/themes/simple/components/Catalog.js
index 54f0d69f..c84ca9b3 100644
--- a/themes/simple/components/Catalog.js
+++ b/themes/simple/components/Catalog.js
@@ -57,31 +57,33 @@ const Catalog = ({ post }) => {
}
return
-
{locale.COMMON.TABLE_OF_CONTENTS}
+
+ {locale.COMMON.TABLE_OF_CONTENTS}
+
-
-
}
export default Catalog
diff --git a/themes/simple/config.js b/themes/simple/config.js
index c7cdf991..bbacb396 100644
--- a/themes/simple/config.js
+++ b/themes/simple/config.js
@@ -17,4 +17,4 @@ const CONFIG = {
SIMPLE_MENU_ARCHIVE: true, // 显示归档
SIMPLE_MENU_SEARCH: true // 显示搜索
}
-export default CO
\ No newline at end of file
+export default CONFIG