diff --git a/README.md b/README.md
index c58b952..66624dd 100644
--- a/README.md
+++ b/README.md
@@ -12,10 +12,10 @@
-
+
-
+
diff --git a/src/components/KycUsers/KycUsers.js b/src/components/KycUsers/KycUsers.js
index e9e5095..8ec741a 100644
--- a/src/components/KycUsers/KycUsers.js
+++ b/src/components/KycUsers/KycUsers.js
@@ -7,6 +7,7 @@ import usePagination from "../../hooks/usePagination";
import {users as userRoute} from "../../routes/routes";
import Loading from "../Loading";
import {toast} from "react-hot-toast";
+import ScrollBar from "../ScrollBar";
const KycUsers = () => {
const axiosPrivate = useAxiosPrivate();
@@ -45,7 +46,6 @@ const KycUsers = () => {
}, [status])
-
const impersonateLogin = async (user) => {
const params =
{
@@ -62,85 +62,92 @@ const KycUsers = () => {
}
return
-
setStatus(e.target.value)}>
+
-
-
+
{error ?
@@ -148,7 +155,9 @@ const KycUsers = () => {
: ""
}
-
+
}
diff --git a/src/components/Users/UserInfo.js b/src/components/Users/UserInfo.js
index 11fa7be..5c46d58 100644
--- a/src/components/Users/UserInfo.js
+++ b/src/components/Users/UserInfo.js
@@ -227,7 +227,7 @@ const UserInfo = () => {
{
!isLoading ?
- { !user?.attributes && This user has not entered any information
}
+ { !user?.attributes && User has no information
}
:""
diff --git a/src/components/Users/Users.js b/src/components/Users/Users.js
index 5efb72c..6c2f4a2 100644
--- a/src/components/Users/Users.js
+++ b/src/components/Users/Users.js
@@ -6,6 +6,7 @@ import {toast} from "react-hot-toast";
import Pagination from "../Pagination/Pagination";
import usePagination from "../../hooks/usePagination";
import Loading from "../Loading";
+import ScrollBar from "../ScrollBar";
const Users = () => {
const [error, setError] = useState();
@@ -61,10 +62,11 @@ const Users = () => {
}
return
}
diff --git a/src/components/Withdraws/Withdraws.js b/src/components/Withdraws/Withdraws.js
index 9ded74f..dd1de26 100644
--- a/src/components/Withdraws/Withdraws.js
+++ b/src/components/Withdraws/Withdraws.js
@@ -6,6 +6,7 @@ import moment from "moment/moment";
import usePagination from "../../hooks/usePagination";
import Pagination from "../Pagination/Pagination";
import Loading from "../Loading";
+import ScrollBar from "../ScrollBar";
const Withdraws = () => {
const [error, setError] = useState();
@@ -52,7 +53,8 @@ const Withdraws = () => {
}, [status, paginate])
return
-
setStatus(e.target.value)}>
+
-
-
+
{error ?
@@ -126,7 +132,9 @@ const Withdraws = () => {
: ""
}
-
+
diff --git a/src/scss/_layout.scss b/src/scss/_layout.scss
index a062d6b..4a0f5ad 100644
--- a/src/scss/_layout.scss
+++ b/src/scss/_layout.scss
@@ -279,6 +279,12 @@ table {
border-radius: 5px !important;
}
+/*table th {
+
+ background-color: var(--tableHeader);
+ line-height: 3.7vh;
+}*/
+
table thead {
background: rgba(36, 38, 51, 0.9803921568627451);
@@ -286,10 +292,13 @@ table thead {
}
table thead tr th {
- border-color: rgba(36, 38, 51, 0.9803921568627451) !important;
- border: none;
-
+ border: 1px solid rgba(36, 38, 51) !important;
font-weight: 500 !important;
+ position: -webkit-sticky;
+ position: sticky;
+ top: 0;
+ z-index: 1;
+ background: rgba(36, 38, 51, 0.9803921568627451) !important;
}
table tr th {