fix
This commit is contained in:
@@ -51,10 +51,10 @@
|
||||
<!--begin:: Card body-->
|
||||
<div class="card-body p-9" style="height: 300px">
|
||||
<!--begin::Name-->
|
||||
<div class="fs-3 fw-bolder text-dark"><?=$row->title?></div>
|
||||
<div class="fs-3 fw-bolder text-dark" style="height: 50px;"><?=strlen($row->title)> 65? substr($row->title,0,65)."..." : $row->title ?></div>
|
||||
<!--end::Name-->
|
||||
<!--begin::Description-->
|
||||
<p class="text-gray-400 fw-bold fs-5 mt-1 mb-7"><?=$row->description?></p>
|
||||
<p class="text-gray-400 fw-bold fs-5 mt-1 mb-7" style="height: 65px;"><?=strlen($row->description)> 100 ? substr($row->description,0,100)."..." : $row->description ?></p>
|
||||
<!--end::Description-->
|
||||
<!--begin::Info-->
|
||||
<div class="d-flex flex-wrap mb-5">
|
||||
@@ -72,11 +72,7 @@
|
||||
<!--end::Budget-->
|
||||
</div>
|
||||
<!--end::Info-->
|
||||
<!--begin::Progress-->
|
||||
<div class="h-4px w-100 bg-light mb-5" data-bs-toggle="tooltip" title="This project 50% completed">
|
||||
<div class="bg-primary rounded h-4px" role="progressbar" style="width: 50%" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
|
||||
</div>
|
||||
<!--end::Progress-->
|
||||
|
||||
<!--begin::Users-->
|
||||
<div class="symbol-group symbol-hover">
|
||||
<!--begin::User-->
|
||||
|
||||
@@ -174,7 +174,7 @@
|
||||
|
||||
|
||||
|
||||
<div class="menu-item" style="padding-top: 50px;">
|
||||
<div class="menu-item" style="padding-top: 150px;">
|
||||
<div class="menu-content pt-8 pb-2">
|
||||
<span class="menu-section text-muted text-uppercase fs-8 ls-1">Job(s) Management</span>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user