Skip to content

Commit a438e46

Browse files
authored
Merge pull request #664 from reactjs/fix-home
Fix top page layout
2 parents 2e70fa5 + 1ae6026 commit a438e46

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/Layout/HomeContent.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@ function Section({children, background = null}) {
4949
}
5050

5151
function Header({children}) {
52+
// "lg:max-w-xl" has been removed in Japanese version
5253
return (
53-
<h2 className="leading-xl font-display text-primary dark:text-primary-dark font-semibold text-5xl lg:text-6xl -mt-4 mb-7 w-full max-w-3xl lg:max-w-xl">
54+
<h2 className="leading-xl font-display text-primary dark:text-primary-dark font-semibold text-5xl lg:text-6xl -mt-4 mb-7 w-full max-w-3xl">
5455
{children}
5556
</h2>
5657
);

0 commit comments

Comments
 (0)