@oxyhq/services 0.0.44 → 0.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -26,22 +26,22 @@ export const AccountSwitcherModal = forwardRef(({ onClose }, ref) => {
|
|
|
26
26
|
return (React.createElement(motion.div, { initial: { opacity: 0, y: "100%" }, animate: { opacity: 1, y: 0 }, exit: { opacity: 0, y: "100%" }, transition: {
|
|
27
27
|
ease: "easeInOut",
|
|
28
28
|
duration: 0.2,
|
|
29
|
-
}, className: "fixed m-auto top-0 bottom-0 left-0 right-0 z-10 flex flex-col items-center justify-center\n space-y-3 rounded-3xl bg-indigo-50 px-5 py-3 text-sm font-medium text-zinc-700\n shadow-md shadow-[#b4bebb]", role: "group" },
|
|
29
|
+
}, className: "fixed m-auto top-0 bottom-0 left-0 right-0 w-fit h-fit z-10 flex flex-col items-center justify-center\n space-y-3 rounded-3xl bg-indigo-50 px-5 py-3 text-sm font-medium text-zinc-700\n shadow-md shadow-[#b4bebb]", role: "group" },
|
|
30
30
|
React.createElement("button", { className: "absolute right-3 top-3 rounded-full bg-indigo-50 p-1 hover:bg-zinc-200" },
|
|
31
31
|
React.createElement(AiOutlineClose, { className: "h-5 w-5 rounded-full stroke-2 text-zinc-700" })),
|
|
32
32
|
React.createElement("p", null, session?.user?.email),
|
|
33
33
|
React.createElement("div", { className: "h-20 w-20 rounded-full border" },
|
|
34
34
|
React.createElement(Image, { src: session?.user?.avatar, className: "h-full w-full rounded-full object-center", height: 500, width: 500, draggable: false, alt: "avatar" })),
|
|
35
|
-
React.createElement("h2", { className: "
|
|
35
|
+
React.createElement("h2", { className: "md:text-2xl text-xl font-normal" },
|
|
36
36
|
"Hi, ",
|
|
37
37
|
session?.user?.name,
|
|
38
38
|
"!"),
|
|
39
39
|
React.createElement("button", { className: "rounded-full border border-black px-7 py-2 text-blue-500 hover:bg-[#d3dfee]" }, "Manage your Oxy Account"),
|
|
40
40
|
React.createElement("div", { className: "flex space-x-1" },
|
|
41
|
-
React.createElement("button", { className: "
|
|
41
|
+
React.createElement("button", { className: "md:w-44 flex w-36 items-center space-x-2 rounded-l-full bg-white py-3 pl-3 hover:bg-zinc-200" },
|
|
42
42
|
React.createElement(HiOutlinePlus, { className: "h-7 w-7 rounded-full bg-indigo-50 p-1 text-blue-500" }),
|
|
43
43
|
React.createElement("span", null, "Add account")),
|
|
44
|
-
React.createElement("button", { className: "
|
|
44
|
+
React.createElement("button", { className: "md:w-44 flex w-36 items-center space-x-2 rounded-r-full bg-white py-3 pl-3 hover:bg-zinc-200" },
|
|
45
45
|
React.createElement(PiSignOutBold, { className: "h-6 w-6" }),
|
|
46
46
|
React.createElement("span", null, "Sign out"))),
|
|
47
47
|
React.createElement("div", { className: "flex h-10 items-center space-x-2 text-xs" },
|