Task Count Number Font Size Inconsistent on Dashboard

This commit is contained in:
Kartik Sharma 2025-10-30 10:28:59 +05:30
parent a2f105dd41
commit 75b1664b48

View File

@ -44,9 +44,9 @@ const TasksCard = () => {
</span>
</div>
) : (
<div className="d-flex justify-content-around align-items-start flex-wrap mt-n2">
<div className="d-flex justify-content-around align-items-start mt-n2">
{/* Total Tasks */}
<div className="text-center flex-fill p-2">
<div>
<h4 className="mb-0 fw-bold text-truncate">
{formatFigure(tasksCardData?.totalTasks ?? 0, {
notation: "compact",
@ -56,7 +56,7 @@ const TasksCard = () => {
</div>
{/* Completed Tasks */}
<div className="text-center flex-fill p-2">
<div>
<h4 className="mb-0 fw-bold text-truncate">
{formatFigure(tasksCardData?.completedTasks ?? 0, {
notation: "compact",