fix: tweak z-index for custom inputs (#7166)

This commit is contained in:
Pablo Lara
2025-03-10 11:55:04 +01:00
committed by GitHub
parent 2fdf89883d
commit b7bce6008f
2 changed files with 4 additions and 2 deletions
@@ -42,7 +42,8 @@ export const SelectScanProvider = <
labelPlacement="outside"
classNames={{
selectorIcon: "right-2",
label: "tracking-tight font-light !text-default-500 text-xs",
label:
"tracking-tight font-light !text-default-500 text-xs !z-0",
value: "text-default-500 text-xs",
}}
label="Select a cloud provider to launch a scan"
+2 -1
View File
@@ -100,7 +100,8 @@ export const CustomInput = <T extends FieldValues>({
<Input
id={name}
classNames={{
label: "tracking-tight font-light !text-default-500 text-xs",
label:
"tracking-tight font-light !text-default-500 text-xs !z-0",
input: "text-default-500 text-xs",
}}
isRequired={inputIsRequired}