修改默认字体粗细

This commit is contained in:
tangly1024
2023-03-23 21:08:57 +08:00
parent 6075ce5442
commit 5a1e8c3f70
2 changed files with 2 additions and 2 deletions

View File

@@ -84,7 +84,7 @@ const NotionPage = ({ post, className }) => {
return <>{post?.summary || ''}</>
}
return <div id='container' className={`font-medium mx-auto ${className}`}>
return <div id='container' className={`mx-auto ${className}`}>
<NotionRenderer
recordMap={post.blockMap}
mapPageUrl={mapPageUrl}

View File

@@ -17,7 +17,7 @@ class MyDocument extends Document {
<CommonScript />
</Head>
<body className={`${BLOG.FONT_STYLE} bg-day dark:bg-night`}>
<body className={`${BLOG.FONT_STYLE} font-light bg-day dark:bg-night`}>
<Main />
<NextScript />
</body>