We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hovering over the following actions, does not display a cursor-pointer icon.
cursor-pointer
screens/sign-in-auth-screen - NextJS & Angular forgotten password. screens/sign-in-auth-screen - NextJS terms of service links. screens/sign-in-auth-screen - NextJS sign-out button
The text was updated successfully, but these errors were encountered:
Add the cursor icon to the following could be a component wide solution:
.fui-form .fui-form__action { @apply px-1 hover:underline text-xs text-text-muted cursor-pointer; }
The policies component in NextJS would benefit from:
<div className="text-text-muted text-xs text-start"> {parts.map((part: string, index: number) => { if (part === "{tos}") { return ( <a key={index} onClick={() => handleUrl(termsOfServiceUrl)} target="_blank" rel="noopener noreferrer" className="text-text-muted hover:underline font-semibold" <--- Add cursor-pointer here > {termsText} </a> ); } if (part === "{privacy}") { return ( <a key={index} onClick={() => handleUrl(privacyPolicyUrl)} target="_blank" rel="noopener noreferrer" className="text-text-muted hover:underline font-semibold" <--- Add cursor-pointer here > {privacyText} </a> ); } return <span key={index}>{part}</span>; })} </div>
The NextJS Sign-uut button could benefit with something similar to Angulars header-component:
header-component
button { background: none; border: none; cursor: pointer; <-- This line font: inherit; color: inherit; }
Sorry, something went wrong.
No branches or pull requests
Hovering over the following actions, does not display a
cursor-pointer
icon.screens/sign-in-auth-screen - NextJS & Angular forgotten password.
screens/sign-in-auth-screen - NextJS terms of service links.
screens/sign-in-auth-screen - NextJS sign-out button
The text was updated successfully, but these errors were encountered: