We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b67ec69 commit 2257a1cCopy full SHA for 2257a1c
app/entities/post/detail/PostBody.tsx
@@ -11,7 +11,7 @@ interface Props {
11
const PostBody = ({ content, loading }: Props) => {
12
return (
13
<div
14
- className={'max-w-3xl post-body px-4 py-16 min-h-[500px] relative '}
+ className={'max-w-full post-body px-4 py-16 min-h-[500px] relative '}
15
>
16
{loading ? (
17
<div className={'w-1/3 mx-auto'}>
app/globals.css
@@ -65,6 +65,7 @@ article.post h6 {
65
66
article.post .post-body {
67
max-width: 768px;
68
+ width: 100%;
69
margin: 0 auto;
70
font-size: 1.1em;
71
line-height: 150%;
0 commit comments