+
+
+
+
+
+
+
+
Allows members login with Google.
+
+
+
+
- )}
-
-
-
-
-
+
+
+
+
+
+
+
Allows members login with Metamask.
+
+
+
+
+
+
+
+
+
+
+
+
Save my login details for next time.
+
+
+
+
+
{valuesChanged && (
diff --git a/src/routes/setting/config/StyledContainer.js b/src/routes/setting/config/StyledContainer.js
index 454f7ea2..a0826a41 100644
--- a/src/routes/setting/config/StyledContainer.js
+++ b/src/routes/setting/config/StyledContainer.js
@@ -10,17 +10,39 @@ const StyledContainer = styled.div`
display: flex;
flex-direction: column;
align-items: flex-start;
- gap: 24px;
+ gap: 32px;
.input {
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
- gap: 8px;
- &.row {
+ gap: 16px;
+ .row {
+ width: 100%;
+ display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
+ .title {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+ .txt {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ gap: 8px;
+ .icon {
+ cursor: pointer;
+ }
+ }
+ .desc {
+ font-weight: 400;
+ font-size: 14px;
+ line-height: 20px;
+ color: #667085;
+ }
+ }
}
}
}
diff --git a/src/routes/setting/config/Tooltip.js b/src/routes/setting/config/Tooltip.js
new file mode 100644
index 00000000..2e39723f
--- /dev/null
+++ b/src/routes/setting/config/Tooltip.js
@@ -0,0 +1,38 @@
+import Tippy from "@tippyjs/react";
+import { roundArrow } from "tippy.js";
+import "tippy.js/dist/svg-arrow.css";
+// import React from 'react'
+import styled from "styled-components";
+const StyledContent = styled.div`
+ padding: 8px 12px;
+ background: #101828;
+ border-radius: 8px;
+ font-weight: 500;
+ font-size: 12px;
+ line-height: 18px;
+ color: #ffffff;
+ a {
+ color: #55c7ec;
+ }
+`;
+import IconQuestion from "../../../assets/icons/question.svg";
+export default function Tooltip({ link = "#" }) {
+ return (
+
+ Need more detail? See our{" "}
+
+ doc
+
+ .
+
+ }
+ >
+
+
+ );
+}