added pagination for member list table

This commit was merged in pull request #534.
This commit is contained in:
victorAnumudu
2024-01-05 09:57:45 +01:00
parent f6e55718bb
commit 5e4887c01c
5 changed files with 21 additions and 22 deletions
+4 -4
View File
@@ -111,13 +111,13 @@ export default function AddGroup({action, situation , setUpdateList}) {
/>
</div>
</div>
<div className="flex space-x-2.5">
<div className="w-full flex justify-between items-center gap-4">
<button
onClick={action}
type="button"
className=" border-gradient text-18 tracking-wide px-4 py-3 rounded-full"
className="text-base text-light-red tracking-wide "
>
<span className="text-gradient">Cancel</span>
<span className="border-b dark:border-[#5356fb29] border-light-red">Cancel</span>
</button>
{requestStatus.loading ? (
<LoadingSpinner size="8" color="sky-blue" />
@@ -125,7 +125,7 @@ export default function AddGroup({action, situation , setUpdateList}) {
<button
onClick={() => addGroup()}
type="button"
className="py-1 px-4 flex justify-center items-center bg-sky-blue hover:bg-sky-600 text-base rounded-full text-white font-bold"
className="w-[152px] h-[46px] flex justify-center items-center btn-gradient text-base rounded-full text-white"
>
Add Group
</button>