@@ -84,15 +96,8 @@ export default function Index() {
defaultIndex: permissions === true ? 1 : 0,
})
}
- className="flex justify-center sm:justify-end items-center w-fit mx-auto sm:mr-0 sm:ml-auto group cursor-pointer"
+ className="hover:opacity-80 duration-100 flex justify-center sm:justify-end items-center w-fit sm:mr-0 sm:ml-auto cursor-pointer"
>
-
- {permissions === true ? "Manage" : "View"} Team
-
{activeCollection?.members
.sort((a, b) => (a.userId as number) - (b.userId as number))
.map((e, i) => {
@@ -100,7 +105,7 @@ export default function Index() {
);
})
@@ -123,7 +128,7 @@ export default function Index() {
setSortDropdown(!sortDropdown)}
id="sort-dropdown"
- className="inline-flex rounded-md cursor-pointer hover:bg-slate-200 hover:dark:bg-neutral-700 duration-100 p-1"
+ className="inline-flex rounded-md cursor-pointer hover:bg-black hover:dark:bg-white hover:bg-opacity-10 hover:dark:bg-opacity-10 duration-100 p-1"
>
setExpandDropdown(!expandDropdown)}
id="expand-dropdown"
- className="inline-flex rounded-md cursor-pointer hover:bg-slate-200 hover:dark:bg-neutral-700 duration-100 p-1"
+ className="inline-flex rounded-md cursor-pointer hover:bg-black hover:dark:bg-white hover:bg-opacity-10 hover:dark:bg-opacity-10 duration-100 p-1"
>
{
setModal({
modal: "COLLECTION",
diff --git a/pages/subscribe.tsx b/pages/subscribe.tsx
index 2868a41..f0c55ca 100644
--- a/pages/subscribe.tsx
+++ b/pages/subscribe.tsx
@@ -51,7 +51,7 @@ export default function Subscribe() {