dashboard update added

This commit was merged in pull request #47.
This commit is contained in:
victorAnumudu
2024-09-03 21:57:40 +01:00
parent 00aa5e57fa
commit cffaa9f379
41 changed files with 1807 additions and 48 deletions
@@ -89,11 +89,7 @@ export default function RecentBVNList({
<div className="w-full h-100 d-flex gap-4 justify-content-center align-items-end">
<button
onClick={handlePrev}
className={`text-sm md:text-lg d-flex justify-content-center align-items-center border-1 transition-all duration-300 ${
currentPage == 0
? "text-slate-400 border-slate-400 dark:text-slate-400 dark:border-slate-400 pe-none"
: "text-slate-600 border-slate-600 dark:text-white dark:border-white"
}`}
className={`btn btn-primary `}
disabled={currentPage == 0}
// style={{width:'30px', height:'30px'}}
>
@@ -123,11 +119,7 @@ export default function RecentBVNList({
<button
onClick={handleNext}
className={`text-sm md:text-lg d-flex justify-content-center align-items-center border-1 transition-all duration-300 ${
currentPage + numberOfSelection >= data.length
? "text-slate-400 border-slate-400 dark:text-slate-400 dark:border-slate-400 pe-none"
: "text-slate-600 border-slate-600 dark:text-white dark:border-white"
}`}
className={`btn btn-primary`}
disabled={currentPage + numberOfSelection >= data.length}
// style={{width:'30px', height:'30px'}}
>