updated login ui and call screen -> tasks ui
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
moulichand16
2026-04-21 14:31:12 +05:30
parent a306311f08
commit a91e4a2a4c
18 changed files with 3985 additions and 3860 deletions

View File

@@ -82,9 +82,9 @@ export const InputBase = ({
ref={groupRef}
className={({ isFocusWithin, isDisabled, isInvalid }) =>
cx(
"relative flex w-full flex-row place-content-center place-items-center rounded-lg bg-primary shadow-xs ring-1 ring-primary transition-shadow duration-100 ease-linear ring-inset",
"relative flex w-full flex-row place-content-center place-items-center rounded-lg bg-primary shadow-xs border border-secondary transition-shadow duration-100 ease-linear",
isFocusWithin && !isDisabled && "ring-2 ring-brand",
isFocusWithin && !isDisabled && "ring-2 ring-brand border-transparent",
// Disabled state styles
isDisabled && "cursor-not-allowed bg-disabled_subtle ring-disabled",
@@ -122,7 +122,7 @@ export const InputBase = ({
ref={ref}
placeholder={placeholder}
className={cx(
"m-0 w-full bg-transparent text-md text-primary ring-0 outline-hidden placeholder:text-placeholder autofill:rounded-lg autofill:text-primary",
"m-0 w-full bg-transparent text-md text-primary ring-0 outline-hidden placeholder:text-placeholder autofill:rounded-lg autofill:text-primary autofill:bg-primary autofill:shadow-[inset_0_0_0_1000px_rgb(255_255_255)]",
isDisabled && "cursor-not-allowed text-disabled",
sizes[inputSize].root,
context?.inputClassName,