diff --git a/components/CollectionCard.tsx b/components/CollectionCard.tsx index 8828944..ca5253b 100644 --- a/components/CollectionCard.tsx +++ b/components/CollectionCard.tsx @@ -32,24 +32,24 @@ export default function CollectionCard({ collection, className }: Props) { return (
setExpandDropdown(!expandDropdown)} id={"expand-dropdown" + collection.id} - className="inline-flex absolute top-5 right-5 rounded-md cursor-pointer hover:bg-slate-200 hover:dark:bg-sky-800 duration-100 p-1" + className="inline-flex absolute top-5 right-5 rounded-md cursor-pointer hover:bg-slate-200 hover:dark:bg-neutral-700 duration-100 p-1" >
-

+

{collection.name}

diff --git a/components/Dropdown.tsx b/components/Dropdown.tsx index 375b5b0..abc9e46 100644 --- a/components/Dropdown.tsx +++ b/components/Dropdown.tsx @@ -25,12 +25,12 @@ export default function Dropdown({ onClickOutside, className, items }: Props) { return ( {items.map((e, i) => { const inner = e && (
-
+

{e.name}

diff --git a/components/FilterSearchDropdown.tsx b/components/FilterSearchDropdown.tsx index 3c424bb..2c835ab 100644 --- a/components/FilterSearchDropdown.tsx +++ b/components/FilterSearchDropdown.tsx @@ -20,7 +20,7 @@ export default function FilterSearchDropdown({ const target = e.target as HTMLInputElement; if (target.id !== "filter-dropdown") setFilterDropdown(false); }} - className="absolute top-8 right-0 border border-sky-100 dark:border-sky-800 shadow-md bg-gray-50 dark:bg-sky-900 rounded-md p-2 z-20 w-40" + className="absolute top-8 right-0 border border-sky-100 dark:border-neutral-700 shadow-md bg-gray-50 dark:bg-neutral-800 rounded-md p-2 z-20 w-40" >

Filter by diff --git a/components/InputSelect/CollectionSelection.tsx b/components/InputSelect/CollectionSelection.tsx index f140bbc..234d5bc 100644 --- a/components/InputSelect/CollectionSelection.tsx +++ b/components/InputSelect/CollectionSelection.tsx @@ -45,6 +45,8 @@ export default function CollectionSelection({ onChange, defaultValue }: Props) { return (