fix mobile support for the logo & text
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m12s

This commit is contained in:
Lee 2024-04-18 03:16:05 +01:00
parent 9df69068df
commit 1534175fb7

@ -21,7 +21,7 @@ export default function NavBar(): JSX.Element {
<div className="bg-secondary w-full rounded-lg flex items-center gap-3 mt-2 bg-opacity-85 h-12">
<Link href="/" className="flex items-center gap-2 pl-3 pr-1">
<Logo />
<p className="hidden xs:block">Minecraft Utilities</p>
<p className="hidden md:block">Minecraft Utilities</p>
</Link>
{pages.map((page, index) => {
return <RedirectButton key={index} title={page.title} url={page.url} openInNewTab={page.openInNewTab} />;