diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2023-07-15 02:27:05 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2023-07-15 02:27:05 -0400 |
| commit | 959996961284a2800004eca2205add8e7d4f40f2 (patch) | |
| tree | bc02ae4091cf88eeb70613319f5426fd7d29dae8 /app/layout.js | |
| parent | a5db54aaf6cde7a88e35f24b624b99daa4c4623e (diff) | |
| download | alure-website-959996961284a2800004eca2205add8e7d4f40f2.tar.gz alure-website-959996961284a2800004eca2205add8e7d4f40f2.tar.bz2 alure-website-959996961284a2800004eca2205add8e7d4f40f2.zip | |
Fixed more padding and fix mobile support on pages
Diffstat (limited to 'app/layout.js')
| -rw-r--r-- | app/layout.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/layout.js b/app/layout.js index 9043715..118fad1 100644 --- a/app/layout.js +++ b/app/layout.js @@ -14,7 +14,7 @@ export default function RootLayout({ children }) { return ( <html lang="en"> <body className={exo.className}> - <div className="px-10 mx-15 py-0.5 font-medium space-x-3 text-right"> + <div className="sm:px-10 px-5 py-0.5 font-medium space-x-3 text-right"> <a href="https://aircs.racing" className="transition duration-150 ease-out hover:ease-in md:hover:text-blue-500">aircs.racing ↗</a> <a href="https://alee14.me" className="transition duration-150 ease-out hover:ease-in md:hover:text-blue-500">alee14.me ↗</a> </div> @@ -60,7 +60,7 @@ export default function RootLayout({ children }) { </div> </nav> {children} - <footer className="flex flex-col text-center py-3 space-y-2 bg-blue-950 text-light"> + <footer className="flex flex-col text-center py-3 space-y-2 bg-blue-950 text-light text-sm sm:text-base"> <p>Alure Regions is a fictional country made for the bits & Bytes Minecraft Server</p> <p>This website is proudly written using Next.JS and Tailwind CSS</p> </footer> |
