We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d69458e commit a64db74Copy full SHA for a64db74
1 file changed
app/pages/comments.tsx
@@ -41,11 +41,10 @@ const Comments: NextPage = () => {
41
<link rel="icon" href="/favicon.ico" />
42
</Head>
43
44
- <section className="text-gray-600 body-font overflow-hidden">
45
- <div className="container px-5 py-24 mx-auto">
+ <section className="text-gray-600 body-font overflow-hidden w-full">
+ <div className="container px-3 py-24 mx-auto">
46
+ {commentsQuery.fetching && <Loading />}
47
<div className="-my-8 divide-y-2 divide-gray-100">
- {commentsQuery.fetching && <Loading />}
48
-
49
{commentsQuery?.data?.comments?.edges.map((edge) => (
50
<CommentItem comment={edge.node!} key={edge.cursor} />
51
))}
0 commit comments