new modal [WIP]

This commit is contained in:
daniel31x13
2023-11-28 14:24:52 -05:00
parent 82b743fa8d
commit 3b2b9e8279
9 changed files with 257 additions and 143 deletions
@@ -44,7 +44,7 @@ export default function CollectionSelection({ onChange, defaultValue }: Props) {
return (
<Select
isClearable
isClearable={false}
className="react-select-container"
classNamePrefix="react-select"
onChange={onChange}
+1 -1
View File
@@ -27,7 +27,7 @@ export default function TagSelection({ onChange, defaultValue }: Props) {
return (
<CreatableSelect
isClearable
isClearable={false}
className="react-select-container"
classNamePrefix="react-select"
onChange={onChange}
+1
View File
@@ -65,4 +65,5 @@ export const styles: StylesConfig = {
backgroundColor: "#38bdf8",
},
}),
menuPortal: (base) => ({ ...base, zIndex: 9999 }),
};