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:
parent
de37908d05
commit
8374ec9564
@ -52,7 +52,7 @@ export default async function LocaleLayout({
|
||||
|
||||
<Toaster richColors position="top-right" offset={64} />
|
||||
|
||||
{/* <TailwindIndicator /> */}
|
||||
<TailwindIndicator />
|
||||
</Providers>
|
||||
</NextIntlClientProvider>
|
||||
</body>
|
||||
|
@ -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" />
|
||||
|
Loading…
Reference in New Issue
Block a user