Skip to content

Commit 7d5374d

Browse files
authored
fix conf page footer alignment (#1419)
1 parent a69f18d commit 7d5374d

File tree

2 files changed

+16
-18
lines changed

2 files changed

+16
-18
lines changed

src/components/Conf/Footer/index.tsx

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -53,23 +53,21 @@ const FooterConf = () => {
5353
))}
5454
</div>
5555
</div>
56-
<div>
57-
<div className="container mt-5 sm:mt-0 py-4 flex flex-wrap flex-col sm:flex-row">
58-
<p className="text-white text-sm text-center sm:text-left">
59-
Copyright © {`${new Date().getFullYear()}`} The GraphQL Foundation.
60-
All rights reserved.
61-
<br />
62-
For web site terms of use, trademark policy and general project
63-
policies please see&nbsp;
64-
<a href="https://lfprojects.org" target="_blank">
65-
https://lfprojects.org
66-
</a>
67-
.
68-
</p>
69-
<span className="inline-flex sm:ml-auto sm:mt-0 mt-2 justify-center sm:justify-start ">
70-
<SocialIcons />
71-
</span>
72-
</div>
56+
<div className="container px-5 mt-5 sm:mt-0 py-4 flex flex-wrap flex-col sm:flex-row">
57+
<p className="text-white text-sm text-center sm:text-left">
58+
Copyright © {`${new Date().getFullYear()}`} The GraphQL Foundation.
59+
All rights reserved.
60+
<br />
61+
For web site terms of use, trademark policy and general project
62+
policies please see&nbsp;
63+
<a href="https://lfprojects.org" target="_blank">
64+
https://lfprojects.org
65+
</a>
66+
.
67+
</p>
68+
<span className="inline-flex sm:ml-auto sm:mt-0 mt-2 justify-center sm:justify-start items-start">
69+
<SocialIcons />
70+
</span>
7371
</div>
7472
</footer>
7573
)

src/components/Conf/SocialIcons/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const SocialIcons = () => {
77
return (
88
<>
99
<a
10-
className="ml-5 mt-3 text-white cursor-pointer"
10+
className="mt-3 text-white cursor-pointer"
1111
href="https://github.com/graphql"
1212
target="_blank"
1313
>

0 commit comments

Comments
 (0)