fix: yank colors from clerk elements

This commit is contained in:
shadcn 2023-06-14 16:57:28 +04:00
parent 8156e62256
commit fd99ff634f
2 changed files with 7 additions and 12 deletions

View file

@ -20,11 +20,10 @@ export default function SignInPage() {
elements: { elements: {
card: 'shadow rounded-lg border border-border', card: 'shadow rounded-lg border border-border',
formFieldInput: formFieldInput:
'flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-2 text-sm shadow-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50', 'flex h-9 w-full rounded-md px-3 py-2 text-sm shadow-sm',
formButtonPrimary: cn(buttonVariants(), 'normal-case'), formButtonPrimary: 'normal-case',
footerAction: 'text-sm', footerAction: 'text-sm',
footerActionLink: footerActionLink: 'font-medium'
'text-primary font-medium hover:underline hover:text-primary'
} }
}} }}
/> />

View file

@ -20,15 +20,11 @@ export default function Page() {
elements: { elements: {
card: 'shadow rounded-lg border border-border', card: 'shadow rounded-lg border border-border',
formFieldInput: formFieldInput:
'flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-2 text-sm shadow-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50', 'flex h-9 w-full rounded-md px-3 py-2 text-sm shadow-sm',
formButtonPrimary: cn(buttonVariants(), 'normal-case'), formButtonPrimary: 'normal-case',
footerAction: 'text-sm', footerAction: 'text-sm',
footerActionLink: footerActionLink: 'font-medium hover:underline',
'text-primary font-medium hover:underline hover:text-primary', identityPreview: 'rounded-md'
identityPreview: 'rounded-md',
identityPreviewEditButton: 'text-primary',
otpCodeFieldInput: 'text-primary focus:border-b-primary',
formResendCodeLink: 'text-primary font-medium'
} }
}} }}
/> />