Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sadnessOjisan committed May 19, 2023
1 parent 191be1e commit 90128ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/components/detail/contents-header.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@
.wrapper > *:last-child {
margin-bottom: 0px;
}
.wrapper > .title{
word-break: break-all;
}
2 changes: 1 addition & 1 deletion src/components/detail/contents-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const ContentsHeader: ComponentType<{

return (
<div className={styles.wrapper}>
<h1>{markdownMeta.title}</h1>
<h1 className={styles.title}>{markdownMeta.title}</h1>
<p>
<time dateTime={markdownMeta.created}>{markdownMeta.created}</time>
</p>
Expand Down

0 comments on commit 90128ea

Please sign in to comment.