Mobile menu: fix text size

This commit is contained in:
MotorTruck1221 2024-03-21 00:30:01 -06:00
parent 8d63bf5e11
commit 82f4bd1c63
No known key found for this signature in database
GPG key ID: 06901A625432AC21

View file

@ -14,8 +14,8 @@ export function HeaderButton(props: HeaderButtonProps) {
return (
<Link href={href} className="flex h-full w-full bg-navbar-color sm:h-auto">
<div className="group flex w-full flex-row items-center justify-center border-t-2 border-solid border-navbar-text-color p-4 md:border-none">
<Icon className="h-10 w-10 text-text-color transition duration-500 group-hover:text-text-hover-color md:h-6 md:w-6" />
<span className="font-roboto pl-1 text-center text-4xl font-bold text-text-color transition duration-500 group-hover:text-text-hover-color md:text-lg">
<Icon className="h-6 w-6 text-text-color transition duration-500 group-hover:text-text-hover-color md:h-6 md:w-6" />
<span className="font-roboto pl-1 text-center text-3xl font-bold text-text-color transition duration-500 group-hover:text-text-hover-color md:text-lg">
{t(translationKey)}
</span>
</div>