diff --git a/public/content/task_list.md b/public/content/task_list.md index 5de6f8e..4111719 100644 --- a/public/content/task_list.md +++ b/public/content/task_list.md @@ -17,7 +17,6 @@ Patch * Game Balance. * Images to social media instead of links. -* Center the common links on mobile. Wishlist --- diff --git a/public/styles/shared.css b/public/styles/shared.css index e56449e..72fdd28 100644 --- a/public/styles/shared.css +++ b/public/styles/shared.css @@ -301,6 +301,10 @@ pre { display: none; } +.centered.mobile { + text-align: initial; +} + @media screen and (max-width: 480px) { .show.mobile { display: block; @@ -309,6 +313,10 @@ pre { .hide.mobile { display: none; } + + .centered.mobile { + text-align: center; + } } .central p.equipmentTextPadding { diff --git a/src/components/panels/common_links.jsx b/src/components/panels/common_links.jsx index 162d9c1..03155eb 100644 --- a/src/components/panels/common_links.jsx +++ b/src/components/panels/common_links.jsx @@ -28,13 +28,13 @@ class CommonLinks extends React.Component { if (this.props.loggedIn) { return (
-

Your Kingdom

-

Your Equipment

-

Game Ladder

-

Combat Log

-

Change Password

-

Task List

-

Patron List

+

Your Kingdom

+

Your Equipment

+

Game Ladder

+

Combat Log

+

Change Password

+

Task List

+

Patron List

@@ -44,12 +44,12 @@ class CommonLinks extends React.Component { } else { //if not logged in return (
-

Sign Up

-

Login

-

Recover Password

-

Game Ladder

-

Task List

-

Patron List

+

Sign Up

+

Login

+

Recover Password

+

Game Ladder

+

Task List

+

Patron List