fix: enable TailwindIndicator in locale layout and update login button cursor style

- Un-commented the TailwindIndicator component in layout.tsx to ensure it is rendered for styling purposes.
- Updated the login button in login-form.tsx to include a cursor-pointer class for better user experience when hovering over the button.
This commit is contained in:
javayhu 2025-03-29 17:37:31 +08:00
parent de37908d05
commit 8374ec9564
2 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ export default async function LocaleLayout({
<Toaster richColors position="top-right" offset={64} />
{/* <TailwindIndicator /> */}
<TailwindIndicator />
</Providers>
</NextIntlClientProvider>
</body>

View File

@ -173,7 +173,7 @@ export const LoginForm = ({ className }: { className?: string }) => {
disabled={isPending}
size="lg"
type="submit"
className="w-full flex items-center justify-center gap-2"
className="w-full flex items-center justify-center gap-2 cursor-pointer"
>
{isPending ? (
<Icons.spinner className="w-4 h-4 animate-spin" />