Skip to content

Commit

Permalink
fix: missing login button
Browse files Browse the repository at this point in the history
  • Loading branch information
ImLunaHey committed Jan 12, 2025
1 parent 49292ca commit 7b08e2b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/navigation/navbar/login-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ import { LogInIcon } from 'lucide-react';

export const LoginButton = () => {
const { t } = useTranslation('auth');

return (
<Link
to="/login"
className="flex-row items-center gap-2 p-3 rounded-sm hover:no-underline hover:bg-gray-200 dark:hover:bg-gray-700 hidden justify-center md:flex"
className="flex flex-row gap-2 p-3 rounded-sm hover:no-underline hover:bg-gray-200 dark:hover:bg-gray-700 justify-center items-center"
>
<LogInIcon className="size-6 xl:hidden active:scale-90" />
<LogInIcon className="size-6 active:scale-90" />
<span className="hidden xl:block">{t('login.default')}</span>
</Link>
);
Expand Down

0 comments on commit 7b08e2b

Please sign in to comment.